ftp -o - https://jcs.org/move_in | sh -
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

vimrc: reset git commit log file position, finally fix crontab issue

that cron thing has been bugging me for years!

+8
+8
.vimrc
··· 84 84 85 85 " ruby - what tabs? 86 86 au FileType ruby,eruby setlocal ts=2 sw=2 tw=79 et sts=2 autoindent colorcolumn=80 87 + 87 88 " and your yaml 88 89 au FileType yaml setlocal ts=2 sw=2 et colorcolumn=80 89 90 ··· 102 103 " and make sure there's a blank line for me to start typing (openbsd's cvs does 103 104 " this by default) 104 105 au FileType cvs s/^CVS:/ CVS:/|1 106 + 107 + " git log messages are always the same file, but viminfo has stale data about 108 + " line pos 109 + au FileType gitcommit call setpos('.', [0, 1, 1, 0]) 110 + 111 + " fix for crontab erroring out because it can't see any changes 112 + au FileType crontab setlocal bkc=yes 105 113 106 114 " when writing new files, mkdir -p their paths 107 115 augroup BWCCreateDir