Compare commits

..

2 commits

Author SHA1 Message Date
GaspardCulis
21c3561841
tmux: New window binding now starts on current path 2024-06-01 21:18:34 +02:00
GaspardCulis
c94f82c852
tmux: Fixed colors being weird 2024-06-01 21:16:08 +02:00

View file

@ -1,3 +1,6 @@
set-option -sa terminal-features ',alacritty:RGB'
set-option -g default-terminal "tmux-256color"
set-option -ga terminal-features ",alacritty:usstyle"
set-option -sa terminal-overrides ",xterm*:Tc"
set -g mouse on
@ -9,6 +12,7 @@ set-option -g renumber-windows on
bind s split-window -c "#{pane_current_path}"
bind v split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'