Merge branch 'master' into wsl
This commit is contained in:
commit
21d1ef41ac
12
README.md
12
README.md
|
@ -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)
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue