美文网首页
tmux配置

tmux配置

作者: jesseyu | 来源:发表于2017-11-04 23:19 被阅读0次

-- base settings --#

set -g default-terminal "screen-256color"
set -g display-time 3000
set -g escape-time 0
set -g history-limit 65535
set -g base-index 1
set -g pane-base-index 1

-- bindkeys --#

prefix key (Ctrl+a)

set -g prefix ^j
unbind ^b
bind a send-prefix

split window

unbind '"'

vertical split (prefix -)

bind - splitw -v
unbind %
bind | splitw -h # horizontal split (prefix |)

select pane

bind k selectp -U # above (prefix k)
bind j selectp -D # below (prefix j)
bind h selectp -L # left (prefix h)
bind l selectp -R # right (prefix l)

resize pane

bind -r ^k resizep -U 10 # upward (prefix Ctrl+k)
bind -r ^j resizep -D 10 # downward (prefix Ctrl+j)
bind -r ^h resizep -L 10 # to the left (prefix Ctrl+h)
bind -r ^l resizep -R 10 # to the right (prefix Ctrl+l)

reload config (prefix r)

bind r source ~/.tmux.conf ; display "Configuration reloaded!"

statusbar

set -g status-justify centre
set -g status-bg colour235
set -g status-fg colour248

setw -g window-status-current-fg colour223
setw -g window-status-current-bg colour237
setw -g window-status-current-format "#I:#W#F"

messages

set -g message-attr bold
set -g message-fg colour223
set -g message-bg colour235

相关文章

  • Mac OS 打造完美终端

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

  • Tmux 学习摘要2--配置

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

  • 比较好用的tmux配置文件

    .tmux.conf配置文件

  • Tmux使用心得

    tmux 环境的简单配置: https://github.com/gpakosz/.tmux 一些更改 开启滚轮 ...

  • vim tmux tmuxinator

    若发现tmux中的vim配色不对需要这样配置: 在.bashrc / .zshrc末尾加入 alias tmux=...

  • Kit-tmux学习

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

  • Tmux使用

    一、Tmux配置 秉承着“能用就行,不折腾”的原则,直接使用网友现成的配置文件链接:好看又强大的 tmux 懒人配...

  • 2020-02-21 git 和 tmux

    1. tmux tmux的使用和配置 tmux使用手册 2. git 猴子都能看懂的git入门-git索引 git...

  • tmux配置

    -- base settings --# set -g default-terminal "screen-256c...

  • tmux 配置

    以下是 ~/.tmux.conf 文件的内容,主要是修改了默认的快捷键,ctrl+b改为ctrl+a。退出改为了c...

网友评论

      本文标题:tmux配置

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