fix: ssh looks at me funny and says 'i dont know what xterm-kitty is'
parent
74a0ef58c4
commit
a2619bf71a
|
@ -34,8 +34,10 @@ map ctrl+shift+enter no_op
|
|||
map cmd+enter no_op
|
||||
|
||||
# I don't understand why some of these have remaps on MacOS
|
||||
map ctrl+shift+n no_op # new_os_window
|
||||
map cmd+n no_op # new_os_window
|
||||
# new_os_window
|
||||
map ctrl+shift+n no_op
|
||||
# new_os_window
|
||||
map cmd+n no_op
|
||||
|
||||
map ctrl+shift+w close_window
|
||||
map shft+cmd+d no_op # just disable any apple-linux segregation
|
||||
|
@ -50,18 +52,26 @@ map ctrl+, set_tab_title _
|
|||
## No tab destruction
|
||||
map ctrl+shift+q no_op
|
||||
map ctrl+shift+w no_op
|
||||
map cmd+w no_op # close_tab 🍎
|
||||
# close_tab 🍎
|
||||
map cmd+w no_op
|
||||
|
||||
## No tab iteration
|
||||
map ctrl+shift+right no_op # next_tab
|
||||
map shift+cmd+] no_op # next_tab 🍎
|
||||
map ctrl+tab no_op # next_tab
|
||||
# next_tab
|
||||
map ctrl+shift+right no_op
|
||||
# next_tab 🍎
|
||||
map shift+cmd+] no_op
|
||||
# next_tab
|
||||
map ctrl+tab no_op
|
||||
|
||||
map ctrl+shift+left no_op # previous_tab
|
||||
map shift+cmd+[ no_op # previous_tab 🍎
|
||||
map ctrl+shift+tab no_op # previous_tab
|
||||
# previous_tab
|
||||
map ctrl+shift+left no_op
|
||||
# previous_tab 🍎
|
||||
map shift+cmd+[ no_op
|
||||
# previous_tab
|
||||
map ctrl+shift+tab no_op
|
||||
|
||||
map ctrl+shift+. no_op # move_tab_forward
|
||||
# move_tab_forward
|
||||
map ctrl+shift+. no_op
|
||||
|
||||
|
||||
## Tab linear jumping
|
||||
|
@ -106,8 +116,10 @@ active_tab_background #eee
|
|||
inactive_tab_foreground #444
|
||||
inactive_tab_background #999
|
||||
map ctrl+shift+, set_tab_title
|
||||
map ctrl+shift+alt+t no_op # set_tab_title
|
||||
map shift+cmd+i no_op # set_tab_title
|
||||
# set_tab_title
|
||||
map ctrl+shift+alt+t no_op
|
||||
# set_tab_title
|
||||
map shift+cmd+i no_op
|
||||
|
||||
|
||||
# map ctrl+shift+p>n kitten hints --type=linenum --linenum-action=tab nvim +{line} {path}
|
||||
|
|
|
@ -141,6 +141,8 @@ Host 10.111.103.*
|
|||
IdentityFile ~/.ssh/id_rsa
|
||||
|
||||
Host *
|
||||
SendEnv TERM
|
||||
SetEnv TERM=xterm-256color
|
||||
IdentityFile ~/.ssh/id_ed25519
|
||||
IdentityFile ~/.ssh/id_rsa
|
||||
|
||||
|
|
Loading…
Reference in New Issue