diff options
| author | Charles Cabergs <charles.cabergs@colruytgroup.com> | 2022-09-06 09:13:21 +0200 |
|---|---|---|
| committer | Charles Cabergs <charles.cabergs@colruytgroup.com> | 2022-09-06 09:13:21 +0200 |
| commit | 6525757c2aff704550ca46991ca1d11e09f11f01 (patch) | |
| tree | eda3b0c2ace05315945a731839ff0cb8e06868cb /config | |
| parent | 414a32702300e073d221d462599dd92f11ed9411 (diff) | |
| download | dotfiles-6525757c2aff704550ca46991ca1d11e09f11f01.tar.gz dotfiles-6525757c2aff704550ca46991ca1d11e09f11f01.tar.bz2 dotfiles-6525757c2aff704550ca46991ca1d11e09f11f01.zip | |
Added ssh help to set vi bindings without modifying remote bashrc
Diffstat (limited to 'config')
| -rw-r--r-- | config/nvim/lua/mappings.lua | 1 | ||||
| -rw-r--r-- | config/zsh/aliases.zsh | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/config/nvim/lua/mappings.lua b/config/nvim/lua/mappings.lua index 5373a4e..9b1f638 100644 --- a/config/nvim/lua/mappings.lua +++ b/config/nvim/lua/mappings.lua @@ -10,7 +10,6 @@ map('n', '<leader>ss', '<cmd>setlocal spell!<cr>', {}) -- toggle spelling check map('n', '<leader>]', '<C-]>', {}) -- toggle spelling check map('n', '<leader>t', '<C-t>', {}) -- toggle spelling check - -- split navigation map('n', '<C-j>', '<C-w><C-j>', {}) map('n', '<C-k>', '<C-w><C-k>', {}) diff --git a/config/zsh/aliases.zsh b/config/zsh/aliases.zsh index 3a5d0af..54c9f99 100644 --- a/config/zsh/aliases.zsh +++ b/config/zsh/aliases.zsh @@ -172,3 +172,7 @@ sdcv() { } alias ffmpeg='ffmpeg -hide_banner' + +sshvi() { + ssh -t "$1" bash -o vi -i +} |
