On Wednesday, May 16, 2012 10:26:37 AM UTC-5, Paul wrote: > > One thing I found not to be remembered is "setl ts=14" (or whatever > number you use to get the file timestamp column closer to the filename > column). Is there a way to have this setting stick?
I don't have input for your main problem, sorry about that. But this one I can handle. netrw sets the 'netrw' filetype on its buffers. So simply use a FileType autocmd, or a filetype plugin file (in the after directory). I.e., either create this autocmd: au FileType netrw setl ts=14 or create file ~/.vim/after/ftplugin/netrw.vim with contents: setl ts=14 -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
