feat(tmux): use nova theme
This commit is contained in:
parent
6e74852524
commit
f53c241ae4
1 changed files with 40 additions and 7 deletions
47
.tmux.conf
47
.tmux.conf
|
|
@ -1,16 +1,46 @@
|
|||
# IMPORTANT: To apply plugins, while on tmux press: <prefix>, I
|
||||
# IMPORTANT:
|
||||
# - To apply plugins, while on tmux press: <prefix>, I
|
||||
# - Install Nerd Fonts
|
||||
|
||||
# List of plugins
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||
|
||||
# Solarized theme
|
||||
#set -g @plugin 'seebi/tmux-colors-solarized'
|
||||
#set -g @colors-solarized 'light'
|
||||
# Nova theme
|
||||
set -g @plugin 'o0th/tmux-nova'
|
||||
|
||||
set -g @plugin "janoamaral/tokyo-night-tmux"
|
||||
set -g @tokyo-night-tmux_theme moon # night (default) | storm | moon | day
|
||||
set -g @tokyo-night-tmux_transparent 1 # transparent background
|
||||
set -g @nova-nerdfonts true
|
||||
set -g @nova-nerdfonts-left
|
||||
set -g @nova-nerdfonts-right
|
||||
|
||||
set -g @nova-pane-active-border-style "#44475a"
|
||||
set -g @nova-pane-border-style "#282a36"
|
||||
set -g @nova-status-style-bg "#4c566a"
|
||||
set -g @nova-status-style-fg "#d8dee9"
|
||||
set -g @nova-status-style-active-bg "#89c0d0"
|
||||
set -g @nova-status-style-active-fg "#2e3540"
|
||||
set -g @nova-status-style-double-bg "#2d3540"
|
||||
|
||||
set -g @nova-pane "#I#{?pane_in_mode, #{pane_mode},} #W"
|
||||
|
||||
set -g @nova-segment-mode "#{?client_prefix,Ω,ω}"
|
||||
set -g @nova-segment-mode-colors "#78a2c1 #2e3440"
|
||||
|
||||
set -g @nova-segment-whoami "#(whoami)@#h"
|
||||
set -g @nova-segment-whoami-colors "#78a2c1 #2e3440"
|
||||
|
||||
set -g @nova-rows 0
|
||||
set -g @nova-segments-0-left "mode"
|
||||
set -g @nova-segments-0-right "whoami"
|
||||
|
||||
# Solarized theme
|
||||
# set -g @plugin 'seebi/tmux-colors-solarized'
|
||||
# set -g @colors-solarized 'dark'
|
||||
|
||||
# Tokyo Night theme
|
||||
# set -g @plugin "janoamaral/tokyo-night-tmux"
|
||||
# set -g @tokyo-night-tmux_theme moon # night (default) | storm | moon | day
|
||||
# set -g @tokyo-night-tmux_transparent 1 # transparent background
|
||||
# set -g @tokyo-night-tmux_show_git 1 # local git status
|
||||
# set -g @tokyo-night-tmux_show_wbg 1 # GitHub / GitLab stats
|
||||
# set -g @tokyo-night-tmux_show_netspeed 1 # network speed
|
||||
|
|
@ -46,3 +76,6 @@ bind -n C-k select-pane -D
|
|||
|
||||
# Enable mouse
|
||||
set -g mouse on
|
||||
|
||||
# Git on status bar
|
||||
set -g status-right '#(gitmux "#{pane_current_path}")'
|
||||
|
|
|
|||
Loading…
Reference in a new issue