" Nick's light (n)vimrc " No plug stuff, just the basics let mapleader="\\" set nocompatible filetype plugin on syntax on set encoding=utf-8 set number relativenumber set nohlsearch set splitbelow splitright set scrolloff=6 colorscheme industry set tabstop=4 set softtabstop=0 noexpandtab set shiftwidth=4 set mouse=a " Jump to a placeholder character map /<++>"_d4lzzi nnoremap /<++>"_d4lzzi inoremap /<++>"_d4lzzi " Splits map h map j map k map l " Copy + paste vnoremap c "+y vnoremap x "*y map v "+P " Paste mode set pastetoggle= " Replace all nnoremap S :%s//g " Nice little helper for saving sudo when forget cmap w!! w !sudo tee >/dev/null %