gpakosz / .tmux

🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made with ❤️
MIT License
21.73k stars 3.34k forks source link

ssh centOS-7 use vim E437: terminal capability "cm" required #675

Closed NatureLR closed 10 months ago

NatureLR commented 10 months ago

image

when set export TERM=screen-256color in tmux it's ok

ubuntu 22.04 it's ok

gpakosz commented 10 months ago

Hello @NatureLR 👋

You likely want to edit your ~/.ssh/config file and use SetEnv TERM=xterm-256color,

E.g. for all hosts you're sshing into

Host *
  SetEnv TERM=xterm-256color
NatureLR commented 10 months ago

Hello @NatureLR 👋

You likely want to edit your ~/.ssh/config file and use SetEnv TERM=xterm-256color,

E.g. for all hosts you're sshing into

Host *
  SetEnv TERM=xterm-256color

good thank u