Skip to content

Commit

Permalink
Vim: Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanmurty committed Nov 1, 2024
1 parent 25149ed commit 9a9bbb5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion vim/custom.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,16 @@ set smartcase
" Show trailing whitespace

set list listchars=trail:.,tab:>.
highlight SpecialKey ctermfg=DarkGray ctermbg=Black

" Line numbers

highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE

" Keybindings

" Ctrl+Shift+up move line above
nmap <C-S-Up> :m -2<CR>
"Ctrl+Shift+down move line below
nmap <C-S-Down> :m +1<CR>

0 comments on commit 9a9bbb5

Please sign in to comment.