From a9ab754b181e49a37db0ae8d258a7de76fa631e4 Mon Sep 17 00:00:00 2001 From: Ben Kyd Date: Wed, 25 Jan 2023 18:41:04 +0000 Subject: [PATCH] tmux --- bootstrap.sh | 5 +++++ home/.tmux.conf | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 home/.tmux.conf diff --git a/bootstrap.sh b/bootstrap.sh index 53f6587..2ffb1fc 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -11,6 +11,11 @@ yay -S ttf-twemoji xotf-nerd-fonts-monacob-mono xidlehook sysstat i3blocks mpris mkdir -p ~/.local/share/fonts cd ~/.local/share/fonts curl -fLo "Droid Sans Mono for Powerline Nerd Font Complete.otf" https://github.com/ryanoasis/nerd-fonts/raw/HEAD/patched-fonts/DroidSansMono/complete/Droid%20Sans%20Mono%20Nerd%20Font%20Complete.otf +cd ~ + +# Tmux +yay -S tmux +git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm # Manjaro/i3 audio with Yay yay -S pulseaudio-equalizer-ladspa mpris-ctl diff --git a/home/.tmux.conf b/home/.tmux.conf new file mode 100644 index 0000000..60fe71c --- /dev/null +++ b/home/.tmux.conf @@ -0,0 +1,20 @@ +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'christoomey/vim-tmux-navigator' +set -g @plugin 'dracula/tmux' + +set -g @dracula-show-powerline true +set -g @dracula-shw-flags true +set -g @dracula-show-left-icon session +set -g status-position top + +# Other examples: +# set -g @plugin 'github_username/plugin_name' +# set -g @plugin 'github_username/plugin_name#branch' +# set -g @plugin 'git@github.com:user/plugin' +# set -g @plugin 'git@bitbucket.com:user/plugin' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run '~/.tmux/plugins/tpm/tpm' +