Merge branch 'master' into wsl

This commit is contained in:
Christoph J. Scherr 2023-07-07 13:27:36 +02:00
commit 21d1ef41ac
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
2 changed files with 11 additions and 8 deletions

View File

@ -14,13 +14,9 @@ target user, some stuff will need to run as root.
- lsd (workstations)
- nodejs (nvim language server)
# TODO
[ ] list nvim plugins and auto install
[ ] add options for help, only local installs, complete installs and so on
[ ] add vim shortcut to resize splits
[ ] take a look at autoclosing plugins for nvim
[ ] Check if :Rustdebug works with regular vim
# Mirrored
The origin of this repository is [git.cscherr.de](https://git.cscherr.de/PlexSheep/configs.git)
It is mirrored to [github](https://github.com/PlexSheep/configs)
It is mirrored to:
- [github](https://github.com/PlexSheep/configs)
- [codeberg](https://codeberg.org/PlexSheep/configs)

View File

@ -103,6 +103,13 @@ map <Leader>% :split<CR>
" join with <leader>j
nnoremap <leader>j :join<CR>
" join up with <leader>J
nnoremap <leader>J :move .-2<CR> :join<CR>
" split lines with <leader>s
nnoremap <leader>s i<CR><ESC>
" split lines up with <leader>S
nnoremap <leader>S i<CR><ESC> V:m -2<CR>
" move screen a line up/down with alt U/D
nmap <A-u> kzz