tmux
This commit is contained in:
parent
ae39e8a19f
commit
8633ae21d1
|
@ -48,3 +48,4 @@
|
|||
~/.config/bat/config: bat/config
|
||||
~/.config/themectl: themectl
|
||||
~/.config/sounds: sounds
|
||||
~/.config/tmux: tmux
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# TODO: update ttys get all themes from wal/colorschemes/dark
|
||||
|
||||
[apps]
|
||||
|
||||
vim-custom = "~/.config/nvim/colors/theme.vim"
|
||||
|
@ -21,4 +19,6 @@ firefox = { file = "~/.cache/wal/colors.json", post = "pywalfox update &" }
|
|||
|
||||
binary-ninja-custom = { file = "~/.config/binja/.binaryninja/themes/theme.bntheme" }
|
||||
|
||||
tmtheme = { file = "~/theme.tmTheme" }
|
||||
tmtheme = { file = "~/.cache/theme/theme.tmTheme" }
|
||||
|
||||
tmux = { file = "~/.cache/theme/tmux.conf" }
|
||||
|
|
25
tmux/tmux.conf
Normal file
25
tmux/tmux.conf
Normal file
|
@ -0,0 +1,25 @@
|
|||
set-option -ga terminal-overrides ",xterm-256color:Tc"
|
||||
set -g default-terminal "screen-256color"
|
||||
set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q'
|
||||
|
||||
setw -g mode-keys vi
|
||||
unbind C-b
|
||||
set-option -g prefix C-a
|
||||
|
||||
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
||||
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel \; run -b "tmux save-buffer - | xclip -sel clip -i > /dev/null"
|
||||
bind y run -b "tmux save-buffer - | xclip -sel clip -i > /dev/null" \;
|
||||
|
||||
|
||||
unbind Left
|
||||
unbind Down
|
||||
unbind Right
|
||||
unbind Up
|
||||
|
||||
bind h select-pane -L
|
||||
bind j select-pane -D
|
||||
bind k select-pane -U
|
||||
bind l select-pane -R
|
||||
|
||||
|
||||
source-file ~/.cache/theme/tmux.conf
|
Loading…
Reference in New Issue
Block a user