tmux.conf 文件需要什么权限

tmux.conf 文件需要什么权限

我在 GitHub 上有我的点文件。我的tmux.conf坐在~/code/.dotfiles/.config/tmux/tmux.conf.

在我的中,~/.config我有一个别名,如下所示:

lrwxrwxrwx    42 j j  2 Feb 11:00  tmux -> /home/j/code/.dotfiles/.config/tmux

实际文件的权限.conf是:

~ ❯ l ~/.config/tmux     
Permissions Size User     Group    Date Modified Name
.rw-rw-r--   142 j        j        8 Mar 09:44   tmux.conf

当我运行时,tmux我的选项不会被读取。我知道,因为在我的配置中我有:

# rename of windows
set -g allow-rename off

但是tmux当我跑步时:

tmux show-options -gw

我可以看到那allow-renameon

我认为这可能是一个权限问题,但我不确定我需要拥有什么权限。

答案1

.tmux.conf644 (.rw-r--r--)权限,但它应该与您的权限一起使用

问题是你需要手动告诉tmux你配置文件的来源

执行Ctrl+B然后:

source-file ~/.tmux.conf

在终止 tmux 服务器(相同的组合键,但输入kill-server)并重新启动它之后,你将看到你的配置已应用

相关内容