Add some options for tweaking the display that I like

This commit is contained in:
Danielle McLean 2016-10-04 22:50:47 +11:00
parent 863a7ba379
commit 8a489d6880
No known key found for this signature in database
GPG key ID: CC91589719027E94

15
.vimrc
View file

@ -29,4 +29,19 @@ call plug#end()
colorscheme inkpot
inoremap jj <Esc>
set hlsearch
set linebreak showbreak=
set showcmd
if exists('+relativenumber')
set relativenumber
else
set number
endif
set tabstop=2 shiftwidth=2
if exists('+breakindent')
set breakindent breakindentopt=sbr
endif