tmux: new version of config
- Remove theme - Set some new configs
This commit is contained in:
parent
8bed8cde21
commit
4e49c8892e
1 changed files with 18 additions and 14 deletions
|
|
@ -1,14 +1,18 @@
|
||||||
|
# Base settings
|
||||||
set-option -sa terminal-overrides ",xterm*:Tc"
|
set-option -sa terminal-overrides ",xterm*:Tc"
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
set -g status-position top
|
||||||
|
set -g status-style "bg=default"
|
||||||
|
set -g status-justify absolute-centre
|
||||||
|
set -g status-left " #S"
|
||||||
|
set -g status-right ""
|
||||||
|
set -g window-status-format "#I:#W" # Index and Name
|
||||||
|
set -g window-status-current-format "#I:#W" # Current window
|
||||||
|
set -g window-status-current-style "fg=orange bg=default bold"
|
||||||
|
|
||||||
# List of plugins
|
# List of plugins
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
||||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||||
# set -g @plugin 'dreamsofcode-io/catppuccin-tmux'
|
|
||||||
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
||||||
set -g @plugin 'egel/tmux-gruvbox'
|
|
||||||
set -g @tmux-gruvbox 'dark' # or 'light'
|
|
||||||
|
|
||||||
# Shift Alt vim keys to switch windows
|
# Shift Alt vim keys to switch windows
|
||||||
bind -n M-P previous-window
|
bind -n M-P previous-window
|
||||||
|
|
@ -20,22 +24,24 @@ set -g pane-base-index 1
|
||||||
set-window-option -g pane-base-index 1
|
set-window-option -g pane-base-index 1
|
||||||
set-option -g renumber-windows on
|
set-option -g renumber-windows on
|
||||||
|
|
||||||
|
# set vi-mode
|
||||||
|
set-window-option -g mode-keys vi
|
||||||
|
|
||||||
|
# Custom bindings
|
||||||
|
|
||||||
|
# Base config
|
||||||
|
bind r source-file ~/.tmux.conf
|
||||||
|
|
||||||
# Open panes in the same directory
|
# Open panes in the same directory
|
||||||
bind '"' split-window -v -c "#{pane_current_path}"
|
bind '"' split-window -v -c "#{pane_current_path}"
|
||||||
bind % split-window -h -c "#{pane_current_path}"
|
bind % split-window -h -c "#{pane_current_path}"
|
||||||
bind c new-window -c "#{pane_current_path}"
|
bind c new-window -c "#{pane_current_path}"
|
||||||
|
|
||||||
# set vi-mode
|
# Keybindings for VI mode
|
||||||
set-window-option -g mode-keys vi
|
|
||||||
# keybindings
|
|
||||||
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
||||||
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle
|
||||||
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
||||||
|
|
||||||
# Theme
|
|
||||||
set -g window-status-format "#I:#W" # Index and Name
|
|
||||||
set -g window-status-current-format "#I:#W" # Current window
|
|
||||||
|
|
||||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||||
run '~/.tmux/plugins/tpm/tpm'
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
|
|
||||||
|
|
@ -45,5 +51,3 @@ bind-key -r -T prefix C-Down resize-pane -D 10
|
||||||
bind-key -r -T prefix C-Left resize-pane -L 10
|
bind-key -r -T prefix C-Left resize-pane -L 10
|
||||||
bind-key -r -T prefix C-Right resize-pane -R 10
|
bind-key -r -T prefix C-Right resize-pane -R 10
|
||||||
|
|
||||||
# Move status bar to top or bottom
|
|
||||||
set-option -g status-position bottom
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue