diff options
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -100,28 +100,7 @@ set scrolloff=8 "Start scrolling when we're 8 lines away from margins set sidescrolloff=15 set sidescroll=1 -" ================ Vim-Addon-Manager ======================== - -fun! SetupVAM() - let c = get(g:, 'vim_addon_manager', {}) - let g:vim_addon_manager = c - let c.plugin_root_dir = expand('$HOME', 1) . '/.vim/vim-addons' - " most used options you may want to use: - " let c.log_to_buf = 1 - " let c.auto_install = 0 - let &rtp.=(empty(&rtp)?'':',').c.plugin_root_dir.'/vim-addon-manager' - if !isdirectory(c.plugin_root_dir.'/vim-addon-manager/autoload') - execute '!git clone --depth=1 git://github.com/MarcWeber/vim-addon-manager ' - \ shellescape(c.plugin_root_dir.'/vim-addon-manager', 1) - endif - - " This provides the VAMActivate command, you could be passing plugin names, too - call vam#ActivateAddons([], {}) -endfun -call SetupVAM() - " ================ Addons and their settings ======================== -so ~/.vim/addons.vim " addons so ~/.vim/addons-settings.vim " addon settings so ~/.vim/custom-settings.vim " custom settings so ~/.vim/custom-functions.vim " custom functions |