summaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/.vimrc10
1 files changed, 8 insertions, 2 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 04ea3d0..2ebd872 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -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