On 2014-04-18 11:52, Magee, Fred wrote: > The other Linux system admin and I have dramatically different ideas > about how vim should be configured. Is it possible for me to create > a test for user id and use my vim configuration including plugins > etc. that I can use when using vim as root? For example is there an > environment variable vim uses for config files I can set when I su > to root?
I don't believe there's an environment variable, per-se, but you can specify it on the command-line: vim -u fred_vimrc which you could easily alias in your shell: alias vif='vim -u ~/.fred_vimrc' -tim -- -- 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 --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
