vimrc: switched to tpope/sensible for defaults, thanks to @LuMatth
This commit is contained in:
parent
c04d57f836
commit
2e4010fcbf
1 changed files with 4 additions and 5 deletions
9
.vimrc
9
.vimrc
|
@ -6,6 +6,9 @@ set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
call vundle#begin()
|
call vundle#begin()
|
||||||
" let Vundle manage Vundle, required
|
" let Vundle manage Vundle, required
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
|
" load sensible defaults first
|
||||||
|
Plugin 'tpope/vim-sensible'
|
||||||
|
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plugin 'airblade/vim-gitgutter'
|
||||||
Plugin 'altercation/vim-colors-solarized'
|
Plugin 'altercation/vim-colors-solarized'
|
||||||
Plugin 'Chiel92/vim-autoformat'
|
Plugin 'Chiel92/vim-autoformat'
|
||||||
|
@ -33,8 +36,6 @@ call vundle#begin()
|
||||||
endif
|
endif
|
||||||
call vundle#end()
|
call vundle#end()
|
||||||
|
|
||||||
filetype plugin indent on
|
|
||||||
syntax enable
|
|
||||||
set background=dark
|
set background=dark
|
||||||
colorscheme solarized
|
colorscheme solarized
|
||||||
call togglebg#map("<F5>")
|
call togglebg#map("<F5>")
|
||||||
|
@ -58,10 +59,8 @@ set foldmethod=indent
|
||||||
set foldnestmax=10
|
set foldnestmax=10
|
||||||
set nofoldenable
|
set nofoldenable
|
||||||
"set nomodeline
|
"set nomodeline
|
||||||
set ruler
|
set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<,nbsp:+
|
||||||
set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<
|
|
||||||
set list
|
set list
|
||||||
filetype plugin indent on
|
|
||||||
set tags+=$HOME/.cache/cpp_tags
|
set tags+=$HOME/.cache/cpp_tags
|
||||||
|
|
||||||
" Fast tab navigation
|
" Fast tab navigation
|
||||||
|
|
Loading…
Reference in a new issue