Add vim plugin manager, update vimrc tab config

This commit is contained in:
Riyyi
2018-01-31 22:26:20 +01:00
parent faa2c5b135
commit d5f28a06eb
3 changed files with 164 additions and 2 deletions
+18 -2
View File
@@ -1,5 +1,20 @@
set nocompatible " Use Vim defaults instead of 100% vi compatibility
set backspace=indent,eol,start " more powerful backspacing
" Disable unused components
set nobackup
set nocompatible
"" General
filetype plugin on
" Indentation
set autoindent
filetype indent on
set backspace=indent,eol,start
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
" Now we set some defaults for the editor
set history=1000 " keep 50 lines of command line history
@@ -11,3 +26,4 @@ set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.i
" Default clipboard register "+ (CLIPBOARD buffer in X)
set clipboard=unnamedplus