Lots of update

This commit is contained in:
2025-10-07 18:55:42 +02:00
parent dacf412b7f
commit e277bba333
10 changed files with 124 additions and 81 deletions
+22
View File
@@ -0,0 +1,22 @@
bg="default"
default_fg="#D8DEE9"
session_fg="#A3BE8C"
session_selection_fg="#3B4252"
session_selection_bg="#81A1C1"
active_window_fg="#88C0D0"
active_pane_border="#abb2bf"
set -g status-left-length 200 # default: 10
set -g status-right-length 200 # default: 10
set -g status-left "#[fg=${session_fg},bold,bg=${bg}]#[fg=${default_fg},nobold,bg=${bg}]"
set -g status-right '%H:%M '
set -g status-justify left
set -g status-style "bg=${bg}"
set -g window-status-format "#[fg=${default_fg},bg=default] #I:#W"
set -g window-status-current-format "#[fg=${active_window_fg},bold,bg=default]  #[underscore]#I:#W"
set -g window-status-last-style "fg=${default_fg},bg=default"
set -g message-command-style "bg=default,fg=${default_fg}"
set -g message-style "bg=default,fg=${default_fg}"
set -g mode-style "bg=${session_selection_bg},fg=${session_selection_fg}"
set -g pane-active-border-style "fg=${active_pane_border},bg=default"
set -g pane-border-style "fg=brightblack,bg=default"
+49
View File
@@ -0,0 +1,49 @@
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'noscript/tmux-mighty-scroll'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'schasse/tmux-jump'
# Use zsh as default
set -g default-shell /bin/zsh
# Enable 256-color and true-color (24-bit) support in tmux
set -g default-terminal "screen-256color"
set -ga terminal-overrides ",*256col*:Tc"
# Prefix to Ctrl+f
unbind C-b
set-option -g prefix C-f
# Reload config
unbind r
bind r source-file ~/.tmux.conf
# New window in same path
bind c new-window -c "#{pane_current_path}"
# Move between panes with vim keys
bind h select-pane -L
bind l select-pane -R
bind k select-pane -U
bind j select-pane -D
bind g copy-mode
# Move with vi keys
setw -g mode-keys vi
# Theme
source-file ~/files/scripts/config_files/tmux/theme.conf
# don't do anything when a 'bell' rings
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
set -g bell-action none
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'