24 lines
360 B
VimL
24 lines
360 B
VimL
" filetype + highlighting
|
|
filetype on
|
|
filetype plugin on
|
|
filetype indent on
|
|
syntax on
|
|
set cursorline
|
|
set cursorcolumn
|
|
|
|
" relative line numbers
|
|
set number
|
|
set relativenumber
|
|
|
|
" colours
|
|
set termguicolors
|
|
colo tokyonight
|
|
|
|
" have j and k navigate visual lines rather than logical ones
|
|
nmap j gj
|
|
nmap k gk
|
|
|
|
" use H and L for beginning/end of line
|
|
nmap H ^
|
|
nmap L $
|