dotfiles/.tmux.conf

27 lines
780 B
Plaintext
Raw Normal View History

2021-04-11 01:35:39 +02:00
set -g default-terminal "xterm-kitty"
2021-01-02 18:04:55 +01:00
set -g mouse on
bind % split-window -h -c "#{pane_current_path}"
bind '"' split-window -v -c "#{pane_current_path}"
2021-01-02 18:27:02 +01:00
set -g @dracula-show-weather false
set -g @dracula-show-powerline true
set -g @dracula-show-flags true
2021-01-02 18:04:55 +01:00
set -g @dracula-show-left-icon session
2021-01-02 18:27:02 +01:00
set -g @dracula-show-time false
set -g @dracula-cpu-usage true
set -g @dracula-ram-usage true
set -g @dracula-gpu-usage true
set -g @dracula-show-timezone false
set -g @dracula-show-location false
2021-01-02 18:04:55 +01:00
2021-03-31 21:10:18 +02:00
set-option -g default-shell /bin/fish
2021-04-16 12:56:57 +02:00
set -ga terminal-overrides ',xterm-256color:RGB'
2021-03-31 21:10:18 +02:00
2021-01-02 18:04:55 +01:00
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
2021-01-08 16:43:49 +01:00
set -g @plugin 'tmux-plugins/tmux-yank'
2021-01-02 18:04:55 +01:00
run '~/.tmux/plugins/tpm/tpm'