From 67fb457430a97c47f44df9dd63893fff5a4e0f8a Mon Sep 17 00:00:00 2001 From: Sean C Date: Sat, 20 Jun 2020 15:55:52 +0000 Subject: [PATCH] vim config additions --- .vimrc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.vimrc b/.vimrc index ba60874..a7ed0f7 100644 --- a/.vimrc +++ b/.vimrc @@ -3,3 +3,18 @@ colorscheme solarized syntax enable 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