diff --git a/README.md b/README.md index ffd20e6..479db38 100644 --- a/README.md +++ b/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) \ No newline at end of file diff --git a/home/.config/nvim/common.vim b/home/.config/nvim/common.vim index 0ae7cd9..6c5dac9 100644 --- a/home/.config/nvim/common.vim +++ b/home/.config/nvim/common.vim @@ -103,6 +103,13 @@ map % :split " join with j nnoremap j :join +" join up with J +nnoremap J :move .-2 :join + +" split lines with s +nnoremap s i +" split lines up with S +nnoremap S i V:m -2 " move screen a line up/down with alt U/D nmap kzz