首页 > 其他分享 >tmux

tmux

时间:2023-01-24 12:00:10浏览次数:44  
标签:set option bind tmux window pane fg

set -g default-terminal "xterm-256color"
#set -ga terminal-overrides ",*256col*:Tc"
set -ga terminal-overrides ",xterm-256color:Tc"
# action key
# unbind C-b
# set-option -g prefix C-t
set-option -g repeat-time 0

#### Key bindings

set-window-option -g mode-keys vi

#bind t send-key C-t
# Reload settings
bind r source-file ~/.tmux.conf \; display "Reloaded!"
# Open current directory
bind o run-shell "open #{pane_current_path}"
bind -r e kill-pane -a

# vim-like pane switching
bind -r k select-pane -U 
bind -r j select-pane -D 
bind -r h select-pane -L 
bind -r l select-pane -R 

# Moving window
bind-key -n C-S-Left swap-window -t -1 \; previous-window
bind-key -n C-S-Right swap-window -t +1 \; next-window

# Resizing pane
bind -r C-k resize-pane -U 5
bind -r C-j resize-pane -D 5
bind -r C-h resize-pane -L 5
bind -r C-l resize-pane -R 5

#### basic settings

set-option -g status-justify "left"
#set-option utf8-default on
#set-option -g mouse-select-pane
set-window-option -g mode-keys vi
#set-window-option -g utf8 on
# look'n feel
set-option -g status-fg cyan
set-option -g status-bg black
set -g pane-active-border-style fg=colour166,bg=default
set -g window-style fg=colour10,bg=default
set -g window-active-style fg=colour12,bg=default
set-option -g history-limit 64096

set -sg escape-time 10

#### COLOUR

# default statusbar colors
set-option -g status-style bg=colour235,fg=colour136,default

# default window title colors
set-window-option -g window-status-style fg=colour244,bg=colour234,dim

# active window title colors
set-window-option -g window-status-current-style fg=colour166,bg=default,bright

# pane border
set-option -g pane-border-style fg=colour235 #base02
set-option -g pane-active-border-style fg=colour136,bg=colour235

# message text
set-option -g message-style bg=colour235,fg=colour166

# pane number display
set-option -g display-panes-active-colour colour33 #blue
set-option -g display-panes-colour colour166 #orange

# clock
set-window-option -g clock-mode-colour colour64 #green

# allow the title bar to adapt to whatever host you connect to
set -g set-titles on
set -g set-titles-string "#T"

# import
if-shell "uname -s | grep -q Darwin" "source ~/.tmux.conf.osx"

标签:set,option,bind,tmux,window,pane,fg
From: https://www.cnblogs.com/cloudhan/p/17065986.html

相关文章

  • 运维之tmux 与 screen
    1.前提,我们之前都是在服务器nohup这个命令,让他在后端保持运行,但是那个有点不好,我们现在用tmux来玩1.1原理tmux==nohup2.安装tmuxyuminstall-ytmux3.......
  • 常用工具简述 nmcli tmux
    nmcli是NetworkManager的客户端,感觉有点象systemd与systemctl工具。nmcli的使用格式为nmcliobjcommand 三部分obj主要、常用的有两个deviceconnectiondevice......
  • [Linux]tmux基础操作
    [Linux]tmux基础操作参考文章​​Tmux入门指南​​​​tmux/vimKnight02大佬写的,本文主要参考这个​​什么是tmuxtmux是一个终端复用器:可以激活多个终端或窗口,在每个......
  • tmux从入门到装x
    原文:https://blog.csdn.net/CSSDCC/article/details/121231906安装方法:#Ubuntu或Debian$sudoapt-getinstalltmux #CentOS$sudoyuminstalltmux启动与......
  • 使用tmux分屏(既可以左右分屏,也可以上下分屏)
    (1)安装工具在ubuntu系统中使用sudoapt-getinstalltmux安装tmux工具(2)使用工具1,输入命令tmux使用工具2,上下分屏:ctrl+b再按"3,左右分屏:ctrl+b再按%4,切换屏幕:c......
  • 【入门教程】tmux精简教程
    Tmux是一个linux下的服务端会话管理工具,可以持久化服务端的session,非常适合用命令行管理服务器的情况。【安装】Ubuntu或Debian$sudoapt-getinstalltmuxCentOS......
  • tmux之搜索
    control+s进入搜索,然后输入要搜索的字符串,并按下回车键。按下n查找下一个,按下shift+n查找上一个。 黄世宇/ShiyuHuang'sPersonalPage:​​https://huangshiyu13.g......
  • Tmux基本操作
    Tmux0.Tmux简介1.安装tmux打开​​MobaXterm​​,输入以下命令行即可。aptinstalltmux2.tmux最简操作流程新建会话​​tmuxnew-smy_session​​。在Tmux窗口运行所需......
  • tmux和screen
    tmux最简操作流程1.tmuxnew-smy_session 新建会话tmuxnew-smy_session 2.Ctrl+bd 按下快捷键Ctrl+bd将会话分离3.tmuxattach-tmy_sessi......
  • Tmux、SSH、服务器
    Tmux1.windows安装tmux使用​​MobaXterm​​安装,输入以下命令行即可。aptinstalltmux2.tmux启动与退出启动:tmux退出:exitorctrl+Dtmux复制粘贴复制——不用设置,MobaXTer......