dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 32e1fd009b5862ac9087ae8503407957d3e2e4ad
parent 638e341eca5e40a558728b178c31a3bed904c0c3
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Fri,  7 Aug 2015 19:15:16 -0700

Vim: Remove old plugin options

Diffstat:
vimrc | 12++----------
1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/vimrc b/vimrc @@ -79,8 +79,8 @@ nmap <silent> <F3> :TagbarToggle<CR> " GoldenView stuff let g:goldenview__enable_default_mapping = 0 -nmap <silent> <C-o> <Plug>GoldenViewSplit -nmap <silent> <F8> <Plug>GoldenViewSwitchMain +nmap <silent> <C-O> <Plug>GoldenViewSplit +nmap <silent> <leader>o <Plug>GoldenViewSwitchMain " Neocomplete tab to select imap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>" @@ -90,11 +90,6 @@ inoremap <expr><Right> neocomplete#close_popup() . "\<Right>" inoremap <expr><Up> neocomplete#close_popup() . "\<Up>" inoremap <expr><Down> neocomplete#close_popup() . "\<Down>" -" Neosnippet mappings -imap <C-l> <Plug>(neosnippet_expand_or_jump) -smap <C-l> <Plug>(neosnippet_expand_or_jump) -xmap <C-l> <Plug>(neosnippet_expand_target) - " tmux-navigator plug-in mappings let g:tmux_navigator_no_mappings = 1 nnoremap <silent> <M-h> :TmuxNavigateLeft<CR> @@ -103,9 +98,6 @@ nnoremap <silent> <M-k> :TmuxNavigateUp<CR> nnoremap <silent> <M-l> :TmuxNavigateRight<CR> nnoremap <silent> <M-\> :TmuxNavigatePrevious<CR> -" mapping for FZF plug-in -nnoremap <silent> <C-I> :FZF!<CR> - " Easy Align mappings vmap <Enter> <Plug>(EasyAlign) nmap gA <Plug>(EasyAlign)