fix: use ssh to have cursor changes on nvim
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
f969c050cf
commit
4884cad9a1
3 changed files with 9 additions and 9 deletions
|
@ -17,6 +17,7 @@
|
||||||
progress
|
progress
|
||||||
wget
|
wget
|
||||||
tree
|
tree
|
||||||
|
openssh
|
||||||
mosh
|
mosh
|
||||||
rsync
|
rsync
|
||||||
killall
|
killall
|
||||||
|
|
|
@ -43,10 +43,10 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.bash.shellAliases = {
|
programs.bash.shellAliases = {
|
||||||
pc = "mosh matt@100.64.0.6 -- tmux -2u new -At phone";
|
pc = "ssh -t matt@100.64.0.6 'tmux -2u new -At phone'";
|
||||||
oksys = "mosh matt@100.64.0.1 -- tmux -2u new -At phone";
|
oksys = "ssh -t matt@100.64.0.1 'tmux -2u new -At phone'";
|
||||||
servivi = "mosh matt@100.64.0.7 -- tmux -2u new -At phone";
|
servivi = "ssh -t matt@100.64.0.7 'tmux -2u new -At phone'";
|
||||||
pve = "mosh matt@100.64.0.4 -- tmux -2u new -At phone";
|
pve = "ssh -t matt@100.64.0.4 'tmux -2u new -At phone'";
|
||||||
|
|
||||||
pod = "mosh matt@100.64.0.4 -- ssh -t -p 6768 matt@10.0.0.122 'tmux -2u new -At phone'";
|
pod = "mosh matt@100.64.0.4 -- ssh -t -p 6768 matt@10.0.0.122 'tmux -2u new -At phone'";
|
||||||
jelly = "mosh matt@100.64.0.4 -- ssh -t matt@10.0.0.123 'tmux -2u new -At phone'";
|
jelly = "mosh matt@100.64.0.4 -- ssh -t matt@10.0.0.123 'tmux -2u new -At phone'";
|
||||||
|
|
|
@ -12,12 +12,11 @@
|
||||||
home-manager.users.${config.vars.user}.programs.bash.shellAliases = {
|
home-manager.users.${config.vars.user}.programs.bash.shellAliases = {
|
||||||
tup = "tailscale up --login-server https://headscale.nelim.org";
|
tup = "tailscale up --login-server https://headscale.nelim.org";
|
||||||
|
|
||||||
pc = "mosh matt@binto -- tmux -2u new -At ${config.vars.hostName}";
|
pc = "ssh -t matt@binto 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
oksys = "mosh matt@oksys -- tmux -2u new -At ${config.vars.hostName}";
|
oksys = "ssh -t matt@oksys 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
servivi = "mosh matt@servivi -- tmux -2u new -At ${config.vars.hostName}";
|
servivi = "ssh -t matt@servivi 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
pve = "mosh matt@pve -- tmux -2u new -At ${config.vars.hostName}";
|
pve = "ssh -t matt@pve 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
|
|
||||||
mc = "mosh mc@mc -- tmux -2u new -At ${config.vars.hostName}";
|
|
||||||
pod = "mosh matt@pve -- ssh -t -p 6768 matt@10.0.0.122 'tmux -2u new -At ${config.vars.hostName}'";
|
pod = "mosh matt@pve -- ssh -t -p 6768 matt@10.0.0.122 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
jelly = "mosh matt@pve -- ssh -t matt@10.0.0.123 'tmux -2u new -At ${config.vars.hostName}'";
|
jelly = "mosh matt@pve -- ssh -t matt@10.0.0.123 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
qbit = "mosh matt@pve -- ssh -t matt@10.0.0.128 'tmux -2u new -At ${config.vars.hostName}'";
|
qbit = "mosh matt@pve -- ssh -t matt@10.0.0.128 'tmux -2u new -At ${config.vars.hostName}'";
|
||||||
|
|
Loading…
Reference in a new issue