add .tmux.conf
This commit is contained in:
parent
aa562e2af8
commit
ca016c72a2
|
@ -0,0 +1,24 @@
|
||||||
|
## pcht tmux configurarion
|
||||||
|
# (c) 2018
|
||||||
|
|
||||||
|
# change prefix to ctrl+a
|
||||||
|
unbind C-b
|
||||||
|
set -g prefix C-a
|
||||||
|
bind C-a send-prefix
|
||||||
|
|
||||||
|
# disable login-shell on tmux
|
||||||
|
# https://wiki.archlinux.org/index.php/Tmux#Start_a_non-login_shell
|
||||||
|
set -g default-command "${SHELL}"
|
||||||
|
|
||||||
|
# open pane/window in same directory
|
||||||
|
# https://unix.stackexchange.com/questions/12032/create-new-window-with-current-directory-in-tmux
|
||||||
|
bind '"' split-window -c "#{pane_current_path}"
|
||||||
|
bind % split-window -h -c "#{pane_current_path}"
|
||||||
|
bind c new-window -c "#{pane_current_path}"
|
||||||
|
|
||||||
|
# last pane like in screen
|
||||||
|
bind C-a last-pane
|
||||||
|
|
||||||
|
# reload this file
|
||||||
|
bind r source-file /home/patrick/.tmux.conf \; display-message ".tmux.conf reloaded"
|
||||||
|
|
Loading…
Reference in New Issue