# remap prefix from 'C-b' to 'C-a' unbind C-b set-option -g prefix C-a bind-key C-a send-prefix # split panes using | and - bind | split-window -h -c "#{pane_current_path}" bind - split-window -v -c "#{pane_current_path}" bind c new-window -c "#{pane_current_path}" unbind '"' unbind % # Scroll slower bind -Tcopy-mode WheelUpPane send -N1 -X scroll-up bind -Tcopy-mode WheelDownPane send -N1 -X scroll-down # Enable mouse mode (tmux 2.1 and above) set -g mouse on # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) set -g @plugin 'tmux-plugins/tpm' # Add some plugins set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-yank' set -g @yank_action 'copy-pipe-no-clear' bind -T copy-mode C-c send -X copy-pipe-no-clear "xsel -i --clipboard" bind -T copy-mode-vi C-c send -X copy-pipe-no-clear "xsel -i --clipboard" set -g @plugin 'dracula/tmux' set -g @dracula-show-powerline true set -g @dracula-show-left-icon window set -g @dracula-show-timezone false set -g @dracula-plugins "cpu-usage ram-usage" set -g @dracula-cpu-usage-colors "dark_purple white" set -g @dracula-show-flags false #set -g @plugin "arcticicestudio/nord-tmux" run '~/.tmux/plugins/tpm/tpm'