Add some options for tweaking the display that I like
This commit is contained in:
parent
863a7ba379
commit
8a489d6880
1 changed files with 17 additions and 2 deletions
19
.vimrc
19
.vimrc
|
@ -1,6 +1,6 @@
|
||||||
if has('win32')
|
if has('win32')
|
||||||
set runtimepath=~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after
|
set runtimepath=~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after
|
||||||
set viminfo+=n~/.viminfo
|
set viminfo+=n~/.viminfo
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||||
|
@ -29,4 +29,19 @@ call plug#end()
|
||||||
|
|
||||||
colorscheme inkpot
|
colorscheme inkpot
|
||||||
inoremap jj <Esc>
|
inoremap jj <Esc>
|
||||||
|
|
||||||
|
set hlsearch
|
||||||
|
set linebreak showbreak=↩
|
||||||
|
set showcmd
|
||||||
|
|
||||||
|
if exists('+relativenumber')
|
||||||
|
set relativenumber
|
||||||
|
else
|
||||||
|
set number
|
||||||
|
endif
|
||||||
|
|
||||||
set tabstop=2 shiftwidth=2
|
set tabstop=2 shiftwidth=2
|
||||||
|
|
||||||
|
if exists('+breakindent')
|
||||||
|
set breakindent breakindentopt=sbr
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in a new issue