diff options
author | David Runge <dave@sleepmap.de> | 2019-10-19 12:19:02 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2019-10-19 12:19:02 +0200 |
commit | 1b4677ab012bd7d18cf05ae28745e07d87f9d9a5 (patch) | |
tree | 2718a7e2d3f1fa65b1de147f1b05f745f095ff4c | |
parent | 302f89a7560305cf5c7946c805398a98cb7d7621 (diff) | |
download | dotfiles-1b4677ab012bd7d18cf05ae28745e07d87f9d9a5.tar.gz dotfiles-1b4677ab012bd7d18cf05ae28745e07d87f9d9a5.tar.bz2 dotfiles-1b4677ab012bd7d18cf05ae28745e07d87f9d9a5.tar.xz dotfiles-1b4677ab012bd7d18cf05ae28745e07d87f9d9a5.zip |
.vimrc: Removing vim addon manager stuff. It's easier to install it via packages or vim's build in plugin support.
-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 |