summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/vimrc8
1 files changed, 2 insertions, 6 deletions
diff --git a/vim/vimrc b/vim/vimrc
index b2f0f3e..e5b8f28 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -14,6 +14,8 @@ Plugin 'UltiSnips'
Plugin 'kien/ctrlp.vim'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-obsession'
+Plugin 'tpope/vim-sensible'
+Plugin 'tpope/vim-scriptease'
Plugin 'scrooloose/nerdtree'
Plugin 'tommcdo/vim-exchange'
Plugin 'unimpaired.vim'
@@ -83,12 +85,10 @@ let g:ctrlp_show_hidden = 1
" Tabs and indent
set smartindent
-set nosmarttab
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
-set autoindent
" Folds
set foldcolumn=0
@@ -98,7 +98,6 @@ set foldlevel=0
" Search
set hlsearch
-set incsearch
" Back up files
set noswapfile
@@ -108,8 +107,6 @@ set undodir=/home/urbain/.vim/vimundo/
" Layout window
set nonumber
-set ruler
-set showcmd
set listchars=tab:▸\ ,eol:¬,trail:-
set fillchars=fold:\ ,vert:\ ,
set showbreak=...
@@ -140,7 +137,6 @@ set ignorecase
" General
set noautochdir
-set wildmenu
set cpoptions+=I
set encoding=utf-8