[2024-05-09] Adding folder structure
This commit is contained in:
parent
ac035ff9f0
commit
3c56823411
7 changed files with 0 additions and 29 deletions
23
vim/.vimrc
Normal file
23
vim/.vimrc
Normal file
|
@ -0,0 +1,23 @@
|
|||
" 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 $
|
Loading…
Add table
Add a link
Reference in a new issue