Pathogen does not load plugins

This seems to be common problem caused by the “system” vimrc in some distributions setting filetype on before you set up pathogen. So turning it off and back on again forces plugins to load correctly: call pathogen#runtime_append_all_bundles() filetype off syntax on filetype plugin indent on More info here.

Automatic closing brackets for Vim [closed]

For those of us, who want a vanilla vim: inoremap ” “”<left> inoremap ‘ ”<left> inoremap ( ()<left> inoremap [ []<left> inoremap { {}<left> inoremap {<CR> {<CR>}<ESC>O inoremap {;<CR> {<CR>};<ESC>O This autocomplete in insert mode, provided set paste is not set. Keep it in the vimrc to avoid typing it every time and when we … Read more