加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.tmux.conf 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
frankhuzi 提交于 2022-03-28 22:56 . inital config bak in mac
set -g prefix C-a #
unbind C-b # C-b即Ctrl+b键,unbind意味着解除绑定
bind C-a send-prefix # 绑定Ctrl+a为新的指令前缀
# 从tmux v1.6版起,支持设置第二个指令前缀
set-option -g prefix2 ` # 设置一个不常用的`键作为指令前缀,按键更快些
bind r source-file ~/.tmux.conf \; display-message "Config reloaded.."
unbind '"'
bind - splitw -v -c '#{pane_current_path}' # 垂直方向新增面板,默认进入当前目录
unbind %
bind | splitw -h -c '#{pane_current_path}' # 水平方向新增面板,默认进入当前目录
# 绑定hjkl键为面板切换的上下左右键
bind -r k select-pane -U # 绑定k为↑
bind -r j select-pane -D # 绑定j为↓
bind -r h select-pane -L # 绑定h为←
bind -r l select-pane -R # 绑定l为→
# tmp packages
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-save-interval '15'
set -g @continuum-restore 'on'
set -g @resurrect-capture-pane-contents 'on'
# Other config ...
run -b '~/.tmux/plugins/tpm/tpm'
# status bar config
set -g allow-rename off
set -g status-justify centre
set-option -g status-style fg=colour136,bg=colour235
set-option -g status-left-length 40
set-option -g status-left "[MyMac:#S]"
set-option -g status-right " #[fg=red]%Y-%m-%d #[fg=blue] 星期%a %p %l:%M"
setw -g window-status-current-format "#W(#I)#F"
setw -g window-status-format "#W#F(#I)#F"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化