this post was submitted on 28 Jun 2024
2 points (100.0% liked)
Neovim
2711 readers
1 users here now
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Huh, that is quite odd. Have you set tmux to true colour? If not that may be the issue, though I don't see why it would select those specific colours.
Incase you haven't, here's the configuration to do so. Place the following in your tmux.conf located at
~/.config/tmux/tmux.confor~/tmux.confset -g default-terminal "screen-256color"you should have to run
tmux source ~/.config/tmux/tmux.confto get it to reloadYou may also have to add the following to your nvim config:
set termguicolorsor set
TERMtoxterm-256colorin your shell (example:export TERM="xterm-256color"for bash)Though I doubt either are your problem.
Edit: fixed neovim configuration