From 5d40569e5c1ca453df1bf7b0547f3f69e3e684d7 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Wed, 21 Feb 2018 01:01:29 -0500 Subject: Add a makefile to rework init.vim. Commit update init.vm TODO: remove in the future and run make in setup --- vim/plugins.vim | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 vim/plugins.vim (limited to 'vim/plugins.vim') diff --git a/vim/plugins.vim b/vim/plugins.vim new file mode 100644 index 0000000..83c220a --- /dev/null +++ b/vim/plugins.vim @@ -0,0 +1,34 @@ +" Maily for the ability to match HTML tags with '%' +runtime macros/matchit.vim + +" Love hate relationship with this thing. I guess it's back +map :NERDTreeToggle + + +" To enable/disable the autocomplete dropdown +nmap [ :AcpDisable +nmap ] :AcpEnable + +" Gundo +nnoremap :GundoToggle +" +" Enable the list of buffers +let g:airline#extensions#tabline#enabled = 1 + +" Show just the filename +let g:airline#extensions#tabline#fnamemod = ':t' + +" This lets you just hit enter instead +" of pressing control-n Some people like it +" personally I'm not that much of a fan +" set completeopt=longest,menuone + +" Omni completion +filetype plugin on +set omnifunc=syntaxcomplete#Complete + +nmap :TagbarToggle + +let g:ctrlp_follow_symlinks = 1 +let g:ctrlp_working_path_mode = 0 + -- cgit v1.2.3