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
15
.vimrc
15
.vimrc
|
@ -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