From bdcc34b61baf5dfbf79da97a9e0135bf46ff0b47 Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Mon, 30 Mar 2015 11:21:15 -0400 Subject: [PATCH] Move plugins so other settings are grouped together. --- vimrc | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/vimrc b/vimrc index b7bb68d..a7c6ff6 100644 --- a/vimrc +++ b/vimrc @@ -33,6 +33,27 @@ set sbr=+ " always on status line set laststatus=2 +" set up folding preferences +set fde=1 +set fdm=syntax +" let backspace work more naturally +set backspace=start,indent,eol +" set a readable width +set textwidth=80 +" favor modern encoding +set enc=utf-8 +" more readable config for list mode +set listchars+=nbsp:¬,tab:»·,trail:· +set listchars-=eol:$ +" smarter handling of case during search +set ignorecase +set smartcase +" disable outdated data loss protections +set nobackup +set noswapfile +" make pastemode more accessible +set pastetoggle= + " configure airline, advanced status line plugin let g:airline#extensions#tagbar#enabled = 1 " these symbols rely on a patched powerline font being set either as gfn within @@ -56,27 +77,6 @@ let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 let g:syntastic_javascript_checkers = ['jsxhint'] -" set up folding preferences -set fde=1 -set fdm=syntax -" let backspace work more naturally -set backspace=start,indent,eol -" set a readable width -set textwidth=80 -" favor modern encoding -set enc=utf-8 -" more readable config for list mode -set listchars+=nbsp:¬,tab:»·,trail:· -set listchars-=eol:$ -" smarter handling of case during search -set ignorecase -set smartcase -" disable outdated data loss protections -set nobackup -set noswapfile -" make pastemode more accessible -set pastetoggle= - " quickly toggle a right, vsplit for viewing, navigating whatever structure easy " tags/tagbar can figure out for the current buffer nmap :TagbarToggle