Sunday, August 26, 2012

Re: Any way to small down my .vimrc file?

way 1: built your own commands using exec and string concatenation

let common="autocmd filetype python"
exec common.' setlocal expandtab ..'

(or create your own command)

way 2: using line continuation:

autocmd filetype python setlocal expandtab shiftwidth=4 tabstop=4 softtabstop=4
\ | setlocal textwidth=78
\ | match ErrorMsg '\%>80v.\+'
..

way 3: Don't use your .vimrc, use a ~/.vim/ftplugin/python.vim file

way 4: Don't use your .vmirc, use a "custom git repostiory" and install it via VAM :)

even shorter? Maybe you can binary encode them, gunzip them and .. (you don't want this)
even hsorter? Download from a server each time (you don't want this)

Marc Weber

--
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

No comments: