diff options
author | Elizabeth <me@liz.coffee> | 2025-05-19 23:03:02 -0700 |
---|---|---|
committer | Elizabeth <me@liz.coffee> | 2025-05-19 23:03:02 -0700 |
commit | 15b24ab9d782a8e5683f305ec8b1c31849a64246 (patch) | |
tree | bdb7c85f0d1f81e493c43360125ca61d6d26145c /tmux/.config | |
download | dotfiles-15b24ab9d782a8e5683f305ec8b1c31849a64246.tar.gz dotfiles-15b24ab9d782a8e5683f305ec8b1c31849a64246.zip |
initial commit
Diffstat (limited to 'tmux/.config')
-rw-r--r-- | tmux/.config/tmux/tmux.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf new file mode 100644 index 0000000..3f2862a --- /dev/null +++ b/tmux/.config/tmux/tmux.conf @@ -0,0 +1,26 @@ +#-- <keybinds> -- +set -g prefix C-s + +unbind r +bind r source-file ~/.config/tmux/tmux.conf + +bind-key h select-pane -L +bind-key j select-pane -D +bind-key k select-pane -U +bind-key l select-pane -R +#-- </keybinds> -- + +#-- <plugins> -- +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +#-- </plugins> -- + +#-- <theme> -- +set -g @plugin 'egel/tmux-gruvbox' +set -g @tmux-gruvbox 'dark' +#-- </theme> -- + +#-- <tpm> -- +# keep at bottom +run '~/.tmux/plugins/tpm/tpm' +#-- </tpm> -- |