summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-08-19 04:44:28 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-08-19 04:44:28 -0600
commit5948e0ec52ab3d0ae8c34705f71a53fd211338a7 (patch)
tree24fa622b3c35385a04886e3fdb2da442e281c2ef /.config
parent94e6f0dc673569b8ab0cf034d2166efdc2fd2cb5 (diff)
tmux: enable scroll feat
Diffstat (limited to '.config')
-rw-r--r--.config/tmux/tmux.conf11
1 files changed, 7 insertions, 4 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index ed7fec4..6584b6c 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -1,9 +1,12 @@
-# General
+# general
+set -s default-terminal 'tmux-256color'
+set -g mouse on
+
+# tpm config from here onwards
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
-set -s default-terminal 'tmux-256color'
-# Dracula customizations
+# dracula customizations
set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "git cpu-usage gpu-usage ram-usage time"
set -g @dracula-show-empty-plugins false
@@ -13,5 +16,5 @@ set -g @dracula-show-powerline true
set -g @dracula-show-timezone false
set -g @dracula-military-time true
-# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
+# initialize tpm (keep this line at the very bottom of tmux.conf)
run '/usr/share/tmux-plugin-manager/tpm'