Skip to content

Instantly share code, notes, and snippets.

View Yousri's full-sized avatar

Yousri Yousri

View GitHub Profile
@Yousri
Yousri / terminator config
Created October 25, 2012 06:40
terminator config
[global_config]
enabled_plugins = TerminalShot, LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler
[keybindings]
go_up = <Alt>k
move_tab_right = <Shift><Alt>p
move_tab_left = <Shift><Alt>n
next_tab = <Alt>n
split_horiz = <Alt>minus
go_prev = <Shift><Ctrl>p
prev_tab = <Alt>p
@Yousri
Yousri / tmux.conf
Created October 25, 2012 06:55
tmux config
#ctrl a
set -g prefix ^a
unbind ^b
bind a send-prefix
#此类配置可以在命令行模式中输入show-options -g查询
#set-option -g base-index 1 #窗口的初始序号;默认为0,这里设置为1
set-option -g display-time 5000 #提示信息的持续时间;设置足够的时间以避免看不清提示,单位为毫秒
set-option -g repeat-time 1000 #控制台激活后的持续时间;设置合适的时间以避免每次操作都要先激活控制台,单位为毫秒
set-option -g status-keys vi #操作状态栏时的默认键盘布局;可以设置为vi或emacs
#set-option -g status-right "#(date +%H:%M' ')" #状态栏右方的内容;这里的设置将得到类似23:59的显示