diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-05-08 20:42:11 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-05-08 20:42:11 +0200 |
commit | 228fe52aa038a71e673fb5f5f9d06b9dbaa75be4 (patch) | |
tree | 2f540a1daa4168a137128db2920b9c33d3767a25 | |
parent | 383a3c706ebef40fe81dbc1e3f606e32a07e59d7 (diff) |
Some vimrc easy stuff
-rw-r--r-- | vim/.vimrc | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -11,15 +11,20 @@ Plugin 'VundleVim/Vundle.vim' " Post to Wordpress using MarkDown Plugin 'ekaitz-zarraga/droWMark' +" Navigate in directory tree +Plugin 'scrooloose/nerdtree' + " Add plugins here call vundle#end() " required " / Vundle stuff end ---------------------------------------- +" Allow backspace always +set backspace=indent,eol,start + " Activate syntax highlighting by default syntax on - " Different config for each filetype filetype plugin on @@ -46,8 +51,9 @@ set foldlevelstart=99 set hlsearch nnoremap <CR> :noh<CR><CR> -" Ingnore Case in search +" Ignore Case in search set ignorecase +set smartcase " Always show tabline (0=never, 1=when there are at least 2 tabs, 2=always) set showtabline=2 |