[TMUX] updated config
This commit is contained in:
parent
e05139fd0f
commit
eed614e017
5 changed files with 65 additions and 7 deletions
1
.config/tmux/plugins/tmux-fzf
Submodule
1
.config/tmux/plugins/tmux-fzf
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 6b31cbe454649736dcd6dc106bb973349560a949
|
14
.config/tmux/themes/catppuccin-frappe.tmuxtheme
Normal file
14
.config/tmux/themes/catppuccin-frappe.tmuxtheme
Normal file
|
@ -0,0 +1,14 @@
|
|||
# --> Catppuccin (Frappe)
|
||||
thm_bg="#303446"
|
||||
thm_fg="#c6d0f5"
|
||||
thm_cyan="#99d1db"
|
||||
thm_black="#292c3c"
|
||||
thm_gray="#414559"
|
||||
thm_magenta="#ca9ee6"
|
||||
thm_pink="#f4b8e4"
|
||||
thm_red="#e78284"
|
||||
thm_green="#a6d189"
|
||||
thm_yellow="#e5c890"
|
||||
thm_blue="#8caaee"
|
||||
thm_orange="#ef9f76"
|
||||
thm_black4="#626880"
|
14
.config/tmux/themes/catppuccin-latte.tmuxtheme
Normal file
14
.config/tmux/themes/catppuccin-latte.tmuxtheme
Normal file
|
@ -0,0 +1,14 @@
|
|||
# --> Catppuccin (Latte)
|
||||
"bg=#dce0e8 ,
|
||||
fg=#4c4f69 ,
|
||||
cyan=#179299 ,
|
||||
black=#e6e9ef ,
|
||||
gray=#bcc0cc ,
|
||||
magenta=#ea76cb,
|
||||
pink=#8839ef ,
|
||||
red=#d20f39 ,
|
||||
green=#40a02b ,
|
||||
yellow=#df8e1d ,
|
||||
blue=#1e66f5 ,
|
||||
orange=#fe640b ,
|
||||
black4=#acb0be ,"
|
|
@ -4,16 +4,18 @@
|
|||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||
#set -g @plugin 'catppuccin/tmux'
|
||||
#set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
#set -g @plugin 'tmux-plugins/tmux-continuum'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
set -g @plugin 'tmux-plugins/tmux-continuum'
|
||||
set -g @plugin 'sainnhe/tmux-fzf'
|
||||
#set -g @plugin 'tomhey/tmux-remote-sessions'
|
||||
|
||||
# Plugin settings
|
||||
#set -g @catppuccin_flavour 'latte'
|
||||
#set -g @catppuccin_window_tabs_enabled on
|
||||
#set -g @resurrect-strategy-nvim 'session'
|
||||
#set -g @resurrect-capture-pane-contents 'on'
|
||||
#set -g @continuum-restore 'on'
|
||||
#set -g @continuum-save-interval '10'
|
||||
#set -g @continuum-boot 'on'
|
||||
set -g @resurrect-strategy-nvim 'session'
|
||||
set -g @resurrect-capture-pane-contents 'on'
|
||||
set -g @continuum-restore 'on'
|
||||
set -g @continuum-save-interval '5'
|
||||
set -g @continuum-boot 'on'
|
||||
set -g @continuum-boot-options 'alacritty'
|
||||
|
||||
|
|
27
.config/tmux/tmux_status_bar.conf
Normal file
27
.config/tmux/tmux_status_bar.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Hardcoded values
|
||||
set -g status-bg "#282828"
|
||||
set -g @unfocused-fg "#d4be98"
|
||||
set -g @focused-bg "#d4be98"
|
||||
set -g @focused-fg "#282828"
|
||||
# Set status bar position
|
||||
set -g status-position top
|
||||
|
||||
# Set status bar style
|
||||
set -g status-style ' #[bg=#{status-bg},fg=#{@unfocused-fg}] '
|
||||
|
||||
# Set status bar justification
|
||||
set -g status-justify left
|
||||
|
||||
# Set right side of the status bar
|
||||
set -g status-right '#[bg=#{status-bg},fg=#{@unfocused-fg}] #S'
|
||||
|
||||
# Set window status format
|
||||
set -g window-status-format ' #I:#W '
|
||||
|
||||
# Set window status format
|
||||
set -g window-status-format ' #[bg=#{status-bg},fg=#{@unfocused-fg}] #I:#W '
|
||||
|
||||
# Set window status format for the current window
|
||||
set -g window-status-current-format ' #[bg=#{@focused-bg},fg=#{@focused-fg}] #I:#W '
|
Loading…
Reference in a new issue