diff options
author | Matthias Braendli <matthias.braendli@u-blox.com> | 2014-10-27 10:13:05 +0100 |
---|---|---|
committer | Matthias Braendli <matthias.braendli@u-blox.com> | 2014-10-27 10:13:05 +0100 |
commit | d2b1cba73ff28f6ac3a22f769c9b4237a56fea93 (patch) | |
tree | b36c2f29ca34216b53ba9eb509dc5dcb8fa17fe5 | |
parent | 151b477ab3972965ff2f76aed5f3d7d8b6b791fa (diff) | |
download | vimrc-d2b1cba73ff28f6ac3a22f769c9b4237a56fea93.tar.gz vimrc-d2b1cba73ff28f6ac3a22f769c9b4237a56fea93.tar.bz2 vimrc-d2b1cba73ff28f6ac3a22f769c9b4237a56fea93.zip |
Refactor vimrc, update NeoBundle call
-rw-r--r-- | dotvimrc | 20 |
1 files changed, 5 insertions, 15 deletions
@@ -35,7 +35,7 @@ let mapleader="\<Space>" "\ endif "endif -call neobundle#rc(expand('~/.vim/bundle/')) +call neobundle#begin(expand('~/.vim/bundle/')) " Let NeoBundle manage NeoBundle NeoBundleFetch 'Shougo/neobundle.vim' @@ -63,10 +63,7 @@ noremap <Leader>t :CtrlPTag<CR> "let g:ctrlp_working_path_mode = 'a' -NeoBundle 'https://bitbucket.org/abudden/taghighlight' NeoBundle 'git-time-lapse' -NeoBundle 'textobj-user' -NeoBundle 'lucapette/vim-textobj-underscore.git' NeoBundle 'Rip-Rip/clang_complete.git' let g:clang_snippets = 1 let g:clang_snippets_engine = 'clang_complete' @@ -78,12 +75,6 @@ NeoBundle 'ifdef-highlighting' NeoBundle 'tpope/vim-speeddating' " can do C-A and C-X on dates! NeoBundle 'ciaranm/detectindent' "adapts tabstop and this shit automagically -" next block is about snippets -"NeoBundle 'garbas/vim-snipmate' " I should try this -"NeoBundle 'tomtom/tlib_vim' -"NeoBundle 'honza/vim-snippets' -"NeoBundle 'MarcWeber/vim-addon-mw-utils' - NeoBundle "scrooloose/nerdtree" " Nice tabulation @@ -94,9 +85,6 @@ let g:Powerline_symbols = 'unicode' NeoBundle 'Tag-Signature-Balloons' -filetype plugin on -filetype indent on - function! ToggleFullScreen() call system("wmctrl -i -r ".v:windowid." -b toggle,fullscreen") redraw @@ -111,9 +99,7 @@ if has("gui_running") set guifont=Lucida_Console:h10:cANSI endif - nnoremap <Leader><F11> :call ToggleFullScreen()<CR> - else colorscheme desert endif @@ -284,4 +270,8 @@ noremap <Leader>/ /\v "remove adding stars in comments set formatoptions-=ro +call neobundle#end() + +filetype plugin indent on + NeoBundleCheck |