linux Tmux通过tpm安装主题后显示奇怪字符

ovfsdjhp  于 2023-06-21  发布在  Linux
关注(0)|答案(1)|浏览(150)

我最近开始使用tmux,并一直在努力配置它。安装catppuccin theme后,屏幕底部的一些符号无法正确显示。

我在流行操作系统上运行敏捷。我试过重新配置配置文件,重新加载tmux,用-u标志启动tmux(根据this post解决类似问题),并通过gnome终端启动tmux,但都无济于事。
这是我的tmux.conf:

# Set ture color
set-option -sa terminal-overrides ",xterm*:Tc"

# Set prefix
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix

# Shift Alt vim keys to switch windows
bind -n M-H previous-window
bind -n M-L next-window

# List of plugins
set -g @tpm_plugins '              \
        tmux-plugins/tpm               \
        tmux-plugins/tmux-sensible     \
    christoomey/vim-tmux-navigator \
        catppuccin/tmux                \
'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.tmux/plugins/'

更新:我现在使用'Fira Code Nerd Font',我的tmux看起来像这样:

qfe3c7zg

qfe3c7zg1#

你好像没有安装合适的字体。根据其文档:

In order to have the correct icons displayed please use your favorite nerd fonts patched font.

你可以去here下载并安装你喜欢的字体。一些流行的字体是FireCode,MesloLG,Iosevka。

相关问题