From 2dcf3936d9883bea5a1ee60a40184845e08108f4 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 26 Mar 2017 22:21:20 +0200 Subject: [PATCH 1/3] add ale jump to error mapping --- vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vimrc b/vimrc index 1c01733..36fc5d5 100644 --- a/vimrc +++ b/vimrc @@ -264,6 +264,10 @@ nnoremap fc :Commits "" minibufexpl map t :MBEToggle +"" ale +nmap (ale_previous_wrap) +nmap (ale_next_wrap) + "" lightline if filereadable(expand("~/.vim/lightline.vim")) source ~/.vim/lightline.vim From ba3c5e2c6f88657fc00a97e7a60ed802911c0f87 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 26 Mar 2017 22:25:17 +0200 Subject: [PATCH 2/3] remove minibuf explorer, getting more in the way than it helps --- vimrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/vimrc b/vimrc index 36fc5d5..5c136aa 100644 --- a/vimrc +++ b/vimrc @@ -23,8 +23,6 @@ Plug 'ludovicchabant/vim-gutentags' Plug 'nathanaelkane/vim-indent-guides' -Plug 'fholgado/minibufexpl.vim' - Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' From 4f416243111286c883e8b1c7a4a764e618283dc8 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 26 Mar 2017 22:25:53 +0200 Subject: [PATCH 3/3] use double letters for fzf mappings --- vimrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vimrc b/vimrc index 5c136aa..0f8c514 100644 --- a/vimrc +++ b/vimrc @@ -250,14 +250,14 @@ let g:gutentags_file_list_command = { \ } "" fzf -nnoremap fb :Buffers +nnoremap bb :Buffers nnoremap ff :GFiles nnoremap FF :Files vnoremap ff y:Files " -nnoremap fa :Ag -vnoremap fa y:Ag " -nnoremap FA :Ag -nnoremap fc :Commits +nnoremap aa :Ag +vnoremap aa y:Ag " +nnoremap AA :Ag +nnoremap cc :Commits "" minibufexpl map t :MBEToggle