tmux conf

作者: 413x | 来源:发表于2019-01-28 20:52 被阅读0次
set -g prefix M-a
set -g pane-border-fg green
set -g pane-active-border-fg red
set -g mouse on
unbind C-NPage
unbind C-PPage
bind -n C-PPage previous-window
bind -n C-NPage next-window

bind P paste-buffer
bind r source-file ~/.tmux.conf \; display "Reloaded!"
bind \ split-window -h 
bind - split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "xclip -i -f -selection primary | xclip -i -selection clipboard"
# tmux plugin manager
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'git@github.com/user/plugin'
# set -g @plugin 'git@bitbucket.com/user/plugin'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
set-window-option -g window-status-current-bg cyan

set -g default-terminal "xterm-256color"

相关文章

  • Kit-tmux学习

    .tmux.conf 配置文件,很好用。备份一下 .tmux.conf 放到~./路径下

  • Mac OS 打造完美终端

    先看效果图: 安装 homebrew 安装 tmux 配置 tmux (vim ~/.tmux.conf) 配置 ...

  • tmux conf

    set -g default-terminal "xterm-256color"

  • 比较好用的tmux配置文件

    .tmux.conf配置文件

  • Tmux 学习摘要2--配置

    配置文件 系统范围的配置文件是 /etc/tmux.conf,而针对个人的配置文件在 ~/.tmux.conf。 ...

  • tmux cheatsheet

    prefix��:可以改,比如ctrl a~/.tmux.conf 里面unbind ^b set -g pref...

  • 配置文件~/.tmux.conf

    # 把ctrl-b改成ctrl-a,按起来顺手unbind C-bset -g prefix C-a # 当非活动...

  • tmux 相关

    修改快捷指令 修改Ctrl+B为Ctrl+Avim ~/.tmux.conf , 配置文件中加入如下内容 开启鼠标...

  • tmux 中 vim 按键的配置

    配置 在 /etc/tmux.conf 下增加以下命令 使用 复制粘贴 vim模式下一些用法 Control+b ...

  • tmux

    1 新建 tmux new -s ccc 2查看tmux窗口tmux ls 3进入一个tmux窗口tmux a -...

网友评论

      本文标题:tmux conf

      本文链接:https://www.haomeiwen.com/subject/fwyzjqtx.html