vim config additions

This commit is contained in:
2020-06-20 15:55:52 +00:00
parent b2edb73f2e
commit 67fb457430

15
.vimrc
View File

@@ -3,3 +3,18 @@
colorscheme solarized colorscheme solarized
syntax enable syntax enable
set background=dark set background=dark
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE " line number colours
" Spaces & Tabs
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " same but for editing mode
set expandtab " tabs are spaces
" UI Config
set number " show line numbers
set showcmd " shows the last run command at the bottom
set cursorline " highlight the current line
filetype indent on " load filetype-specific indent files
set showmatch " highlight matching [{()}]
set wildmenu " visual autocomplete for command menu
" Searching
set incsearch " search as characters are entered
set hlsearch " highlight matches