Tweaking VIM
~/.vimrc
call plug#begin('~/.vim/plugged')
Plug 'https://github.com/machakann/vim-highlightedyank'
call plug#end()
set nocompatible
syntax enable " enable syntax highlighting
filetype plugin on
set path+=\*\*
set wildmenu
" set number " show line numbers
set cursorline " underline active line
set showcmd " show command in the bottom bar
set showmatch " highlight matching [{()}]
set incsearch " search as characters are entered.
set hlsearch " highlight matches during search.
set background=dark
colorscheme peachpuff " set colour theme.
" Set colors for the current cursor line.
" highlight CursorLine ctermfg=White ctermbg=Yellow cterm=bold guifg=white guibg=yellow gui=bold