Compare commits
No commits in common. "b1fb865ab08c74c5476cf2d87a35a2354d5d03d1" and "60227da5baefa2404fd09f4360cd58266e558803" have entirely different histories.
b1fb865ab0
...
60227da5ba
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,6 +0,0 @@
|
||||
[submodule "alacritty/themes"]
|
||||
path = alacritty/themes
|
||||
url = git@github.com:alacritty/alacritty-theme
|
||||
[submodule "alacritty-theme"]
|
||||
path = alacritty-theme
|
||||
url = git@github.com:alacritty/alacritty-theme
|
@ -1 +0,0 @@
|
||||
Subproject commit 981f48c9e4de2c0b657ed23a8ca425d8bf6ae0c7
|
@ -183,7 +183,7 @@ font:
|
||||
|
||||
# Theme import (sets colors key)
|
||||
import:
|
||||
- ~/.config/alacritty/themes/{{alacritty_theme}}.yaml
|
||||
- ~/.config/alacritty/themes/{{alacritty_theme}}.yml
|
||||
|
||||
# Colors (Tomorrow Night)
|
||||
#colors:
|
||||
|
52
alacritty/themes/bogster-dark.yml
Normal file
52
alacritty/themes/bogster-dark.yml
Normal file
@ -0,0 +1,52 @@
|
||||
colors:
|
||||
primary:
|
||||
background: '#161c23'
|
||||
foreground: '#c6b8ad'
|
||||
bright_foreground: '#e5ded6'
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
search:
|
||||
matches:
|
||||
foreground: CellForeground
|
||||
background: '#313f4e'
|
||||
focused_match:
|
||||
foreground: '#e5ded6'
|
||||
background: '#313f4e'
|
||||
footer_bar:
|
||||
background: '#e5ded6'
|
||||
foreground: '#313f4e'
|
||||
hints:
|
||||
start:
|
||||
foreground: '#232d38'
|
||||
background: '#23a580'
|
||||
end:
|
||||
foreground: '#23a580'
|
||||
background: '#232d38'
|
||||
line_indicator:
|
||||
foreground: None
|
||||
background: None
|
||||
selection:
|
||||
text: CellForeground
|
||||
background: '#313f4e'
|
||||
normal:
|
||||
black: '#161c23'
|
||||
red: '#d32c5d'
|
||||
green: '#57a331'
|
||||
yellow: '#dc7759'
|
||||
blue: '#36b2d4'
|
||||
magenta: '#b759dc'
|
||||
cyan: '#23a580'
|
||||
white: '#c6b8ad'
|
||||
bright:
|
||||
black: '#415367'
|
||||
red: '#dc597f'
|
||||
green: '#7fdc59'
|
||||
yellow: '#dcb659'
|
||||
blue: '#59dcd8'
|
||||
magenta: '#dc59c0'
|
||||
cyan: '#59dcb7'
|
||||
white: '#e5ded6'
|
52
alacritty/themes/bogster-light.yml
Normal file
52
alacritty/themes/bogster-light.yml
Normal file
@ -0,0 +1,52 @@
|
||||
colors:
|
||||
primary:
|
||||
foreground: '#161c23'
|
||||
background: '#c6b8ad'
|
||||
bright_foreground: '#e5ded6'
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
vi_mode_cursor:
|
||||
text: CellBackground
|
||||
cursor: CellForeground
|
||||
search:
|
||||
matches:
|
||||
background: CellForeground
|
||||
foreground: '#313f4e'
|
||||
focused_match:
|
||||
background: '#e5ded6'
|
||||
foreground: '#313f4e'
|
||||
footer_bar:
|
||||
foreground: '#e5ded6'
|
||||
background: '#313f4e'
|
||||
hints:
|
||||
start:
|
||||
background: '#232d38'
|
||||
foreground: '#23a580'
|
||||
end:
|
||||
background: '#23a580'
|
||||
foreground: '#232d38'
|
||||
line_indicator:
|
||||
background: None
|
||||
foreground: None
|
||||
selection:
|
||||
text: CellForeground
|
||||
foreground: '#313f4e'
|
||||
normal:
|
||||
black: '#161c23'
|
||||
red: '#d32c5d'
|
||||
green: '#57a331'
|
||||
yellow: '#dc7759'
|
||||
blue: '#36b2d4'
|
||||
magenta: '#b759dc'
|
||||
cyan: '#23a580'
|
||||
white: '#c6b8ad'
|
||||
bright:
|
||||
black: '#415367'
|
||||
red: '#dc597f'
|
||||
green: '#7fdc59'
|
||||
yellow: '#dcb659'
|
||||
blue: '#59dcd8'
|
||||
magenta: '#dc59c0'
|
||||
cyan: '#59dcb7'
|
||||
white: '#e5ded6'
|
24
alacritty/themes/sonokai.yml
Normal file
24
alacritty/themes/sonokai.yml
Normal file
@ -0,0 +1,24 @@
|
||||
colors:
|
||||
primary:
|
||||
background: "0x2c2e34"
|
||||
foreground: "0xe2e2e3"
|
||||
|
||||
normal:
|
||||
black: "0x181819"
|
||||
red: "0xfc5d7c"
|
||||
green: "0x9ed072"
|
||||
yellow: "0xe7c664"
|
||||
blue: "0x76cce0"
|
||||
magenta: "0xb39df3"
|
||||
cyan: "0xf39660"
|
||||
white: "0xe2e2e3"
|
||||
|
||||
bright:
|
||||
black: "0x181819"
|
||||
red: "0xfc5d7c"
|
||||
green: "0x9ed072"
|
||||
yellow: "0xe7c664"
|
||||
blue: "0x76cce0"
|
||||
magenta: "0xb39df3"
|
||||
cyan: "0xf39660"
|
||||
white: "0xe2e2e3"
|
32
alacritty/themes/tokyonight.yml
Normal file
32
alacritty/themes/tokyonight.yml
Normal file
@ -0,0 +1,32 @@
|
||||
# Tokyonight
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x1a1b26'
|
||||
foreground: '0xc0caf5'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x15161E'
|
||||
red: '0xf7768e'
|
||||
green: '0x9ece6a'
|
||||
yellow: '0xe0af68'
|
||||
blue: '0x7aa2f7'
|
||||
magenta: '0xbb9af7'
|
||||
cyan: '0x7dcfff'
|
||||
white: '0xa9b1d6'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x414868'
|
||||
red: '0xf7768e'
|
||||
green: '0x9ece6a'
|
||||
yellow: '0xe0af68'
|
||||
blue: '0x7aa2f7'
|
||||
magenta: '0xbb9af7'
|
||||
cyan: '0x7dcfff'
|
||||
white: '0xc0caf5'
|
||||
|
||||
indexed_colors:
|
||||
- { index: 16, color: '0xff9e64' }
|
||||
- { index: 17, color: '0xdb4b4b' }
|
@ -22,7 +22,6 @@ vars = [ "dark.toml" ]
|
||||
|
||||
# alacritty
|
||||
alacritty = { source = "alacritty", target = ".config/alacritty" }
|
||||
alacritty_themes = { source = "alacritty-theme/themes", target = ".config/alacritty/themes" }
|
||||
|
||||
# broot
|
||||
broot = { source = "broot", target = ".config/broot" }
|
||||
@ -45,6 +44,10 @@ mimeapps = { source = "mimeapps.list", target = ".config/mimeapps.list" }
|
||||
# navi
|
||||
navi = { source = "navi", target = ".config/navi" }
|
||||
|
||||
# tmux
|
||||
tmux = { source = "tmux", target = ".config/tmux" }
|
||||
tmux_conf = { source = "tmux.conf", target = ".tmux.conf" }
|
||||
|
||||
# zellij
|
||||
zellij = { source = "zellij", target = ".config/zellij" }
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
theme = "dark"
|
||||
alacritty_theme = "dracula"
|
||||
helix_theme = "dracula_at_night"
|
||||
zellij_theme = "dracula"
|
||||
alacritty_theme = "bogster-dark"
|
||||
helix_theme = "bogster-dark"
|
||||
tmux_theme = "bogster-dark"
|
||||
|
@ -14,12 +14,6 @@ select = "underline"
|
||||
[editor.search]
|
||||
smart-case = false
|
||||
|
||||
[editor.soft-wrap]
|
||||
enable = true
|
||||
|
||||
[keys.normal]
|
||||
C-r = ":config-reload"
|
||||
_ = { n = ":set whitespace.render none", a = ":set whitespace.render all" }
|
||||
|
||||
[keys.normal.space]
|
||||
i = ":toggle lsp.display-inlay-hints"
|
||||
|
77
helix/themes/bogster-dark.toml
Normal file
77
helix/themes/bogster-dark.toml
Normal file
@ -0,0 +1,77 @@
|
||||
# Author : Wojciech Kępka <wojciech@wkepka.dev>
|
||||
|
||||
"attribute" = "#dc7759"
|
||||
"keyword" = { fg = "#dcb659", modifiers = ["bold"] }
|
||||
"keyword.directive" = "#dcb659"
|
||||
"namespace" = "#d32c5d"
|
||||
"punctuation" = "#dc7759"
|
||||
"punctuation.delimiter" = "#dc7759"
|
||||
"operator" = { fg = "#dc7759", modifiers = ["bold"] }
|
||||
"special" = "#7fdc59"
|
||||
"variable.other.member" = "#c6b8ad"
|
||||
"variable" = "#c6b8ad"
|
||||
"variable.parameter" = "#c6b8ad"
|
||||
"type" = "#dc597f"
|
||||
"type.builtin" = { fg = "#d32c5d", modifiers = ["bold"] }
|
||||
"constructor" = "#dc597f"
|
||||
"function" = "#59dcd8"
|
||||
"function.macro" = { fg = "#dc7759", modifiers = ["bold"] }
|
||||
"function.builtin" = { fg = "#59dcd8", modifiers = ["bold"] }
|
||||
"comment" = "#627d9d"
|
||||
"variable.builtin" = "#c6b8ad"
|
||||
"constant" = "#59dcb7"
|
||||
"constant.builtin" = "#59dcb7"
|
||||
"string" = "#59dcb7"
|
||||
"constant.numeric" = "#59c0dc"
|
||||
"constant.character.escape" = { fg = "#7fdc59", modifiers = ["bold"] }
|
||||
"label" = "#59c0dc"
|
||||
|
||||
"module" = "#d32c5d"
|
||||
|
||||
# TODO
|
||||
"markup.heading" = "blue"
|
||||
"markup.list" = "red"
|
||||
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "magenta", modifiers = ["italic"] }
|
||||
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] }
|
||||
"markup.link.text" = "red"
|
||||
"markup.quote" = "cyan"
|
||||
"markup.raw" = "green"
|
||||
|
||||
"diff.plus" = "#59dcb7"
|
||||
"diff.delta" = "#dc7759"
|
||||
"diff.minus" = "#dc597f"
|
||||
|
||||
#"ui.background" = { bg = "#161c23" }
|
||||
"ui.linenr" = { fg = "#415367" }
|
||||
"ui.linenr.selected" = { fg = "#e5ded6" } # TODO
|
||||
"ui.cursorline" = { bg = "#131920" }
|
||||
"ui.statusline" = { fg = "#e5ded6", bg = "#232d38" }
|
||||
"ui.statusline.inactive" = { fg = "#c6b8ad", bg = "#232d38" }
|
||||
"ui.statusline.normal" = { fg = "#e5ded6", bg = "blue" }
|
||||
"ui.statusline.insert" = { fg = "#e5ded6", bg = "green" }
|
||||
"ui.statusline.select" = { fg = "#e5ded6", bg = "magenta" }
|
||||
"ui.popup" = { bg = "#232d38" }
|
||||
"ui.window" = { bg = "#232d38" }
|
||||
"ui.help" = { bg = "#232d38", fg = "#e5ded6" }
|
||||
|
||||
"ui.text" = { fg = "#e5ded6" }
|
||||
"ui.text.focus" = { fg = "#e5ded6", modifiers= ["bold"] }
|
||||
"ui.virtual.whitespace" = "#627d9d"
|
||||
"ui.virtual.ruler" = { bg = "#131920" }
|
||||
|
||||
"ui.selection" = { bg = "#313f4e" }
|
||||
# "ui.cursor.match" # TODO might want to override this because dimmed is not widely supported
|
||||
"ui.cursor.match" = { fg = "#313f4e", bg = "#dc7759" }
|
||||
"ui.cursor" = { fg = "#ABB2BF", modifiers = ["reversed"] }
|
||||
|
||||
"ui.menu" = { fg = "#e5ded6bg", bg = "#232d38" }
|
||||
"ui.menu.selected" = { bg = "#313f4e" }
|
||||
|
||||
"warning" = "#dc7759"
|
||||
"error" = "#dc597f"
|
||||
"info" = "#59dcb7"
|
||||
"hint" = "#59c0dc"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
77
helix/themes/bogster-light.toml
Normal file
77
helix/themes/bogster-light.toml
Normal file
@ -0,0 +1,77 @@
|
||||
# Author : Wojciech Kępka <wojciech@wkepka.dev>
|
||||
|
||||
"attribute" = "#dc7759"
|
||||
"keyword" = { fg = "#dcb659", modifiers = ["bold"] }
|
||||
"keyword.directive" = "#dcb659"
|
||||
"namespace" = "#d32c5d"
|
||||
"punctuation" = "#dc7759"
|
||||
"punctuation.delimiter" = "#dc7759"
|
||||
"operator" = { fg = "#dc7759", modifiers = ["bold"] }
|
||||
"special" = "#7fdc59"
|
||||
"variable.other.member" = "#161c23"
|
||||
"variable" = "#161c23"
|
||||
"variable.parameter" = "#161c23"
|
||||
"type" = "#dc597f"
|
||||
"type.builtin" = { fg = "#d32c5d", modifiers = ["bold"] }
|
||||
"constructor" = "#dc597f"
|
||||
"function" = "#59dcd8"
|
||||
"function.macro" = { fg = "#dc7759", modifiers = ["bold"] }
|
||||
"function.builtin" = { fg = "#59dcd8", modifiers = ["bold"] }
|
||||
"comment" = "#627d9d"
|
||||
"variable.builtin" = "#161c23"
|
||||
"constant" = "#59dcb7"
|
||||
"constant.builtin" = "#59dcb7"
|
||||
"string" = "#59dcb7"
|
||||
"constant.numeric" = "#59c0dc"
|
||||
"constant.character.escape" = { fg = "#7fdc59", modifiers = ["bold"] }
|
||||
"label" = "#59c0dc"
|
||||
|
||||
"module" = "#d32c5d"
|
||||
|
||||
# TODO
|
||||
"markup.heading" = "blue"
|
||||
"markup.list" = "red"
|
||||
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "magenta", modifiers = ["italic"] }
|
||||
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] }
|
||||
"markup.link.text" = "red"
|
||||
"markup.quote" = "cyan"
|
||||
"markup.raw" = "green"
|
||||
|
||||
"diff.plus" = "#59dcb7"
|
||||
"diff.delta" = "#dc7759"
|
||||
"diff.minus" = "#dc597f"
|
||||
|
||||
"ui.background" = { bg = "#c6b8ad" }
|
||||
"ui.linenr" = { fg = "#415367" }
|
||||
"ui.linenr.selected" = { fg = "#e5ded6" } # TODO
|
||||
"ui.cursorline" = { bg = "#131920" }
|
||||
"ui.statusline" = { fg = "#e5ded6", bg = "#232d38" }
|
||||
"ui.statusline.inactive" = { fg = "#161c23", bg = "#232d38" }
|
||||
"ui.statusline.insert" = { fg = "#e5ded6", bg = "red" }
|
||||
"ui.statusline.normal" = { fg = "#e5ded6", bg = "green" }
|
||||
"ui.statusline.select" = { fg = "#232d38", bg = "blue" }
|
||||
"ui.popup" = { bg = "#232d38" }
|
||||
"ui.window" = { bg = "#232d38" }
|
||||
"ui.help" = { bg = "#232d38", fg = "#e5ded6" }
|
||||
|
||||
"ui.text" = { fg = "#e5ded6" }
|
||||
"ui.text.focus" = { fg = "#e5ded6", modifiers= ["bold"] }
|
||||
"ui.virtual.whitespace" = "#627d9d"
|
||||
"ui.virtual.ruler" = { bg = "#131920" }
|
||||
|
||||
"ui.selection" = { bg = "#313f4e" }
|
||||
# "ui.cursor.match" # TODO might want to override this because dimmed is not widely supported
|
||||
"ui.cursor.match" = { fg = "#313f4e", bg = "#dc7759" }
|
||||
"ui.cursor" = { fg = "#ABB2BF", modifiers = ["reversed"] }
|
||||
|
||||
"ui.menu" = { fg = "#e5ded6bg", bg = "#232d38" }
|
||||
"ui.menu.selected" = { bg = "#313f4e" }
|
||||
|
||||
"warning" = "#dc7759"
|
||||
"error" = "#dc597f"
|
||||
"info" = "#59dcb7"
|
||||
"hint" = "#59c0dc"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
@ -1,4 +1,4 @@
|
||||
theme = "light"
|
||||
alacritty_theme = ""
|
||||
helix_theme = ""
|
||||
zellij_theme = ""
|
||||
alacritty_theme = "bogster-light"
|
||||
helix_theme = "bogster-light"
|
||||
tmux_theme = "bogster-light"
|
||||
|
61
tmux.conf
Normal file
61
tmux.conf
Normal file
@ -0,0 +1,61 @@
|
||||
# Powerline
|
||||
run-shell "/usr/bin/powerline-daemon -q"
|
||||
source "/usr/share/powerline/bindings/tmux/powerline.conf"
|
||||
source "/home/daniel/.config/tmux/{{tmux_theme}}.conf"
|
||||
|
||||
# Mouse
|
||||
set-option -g mouse on
|
||||
bind-key -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'copy-mode -e; send-keys -M'"
|
||||
|
||||
# Vim-like copy/paste mode
|
||||
setw -g mode-keys vi
|
||||
bind-key [ copy-mode
|
||||
bind-key -Tcopy-mode-vi 'v' send -X begin-selection
|
||||
bind-key -Tcopy-mode-vi 'y' send -X copy-selection
|
||||
bind-key -Tcopy-mode-vi Escape send -X cancel
|
||||
bind-key -Tcopy-mode-vi V send -X rectangle-toggle
|
||||
bind-key ] paste-buffer
|
||||
|
||||
# Vi-mode pane switching
|
||||
bind-key h "select-pane -L"
|
||||
bind-key j "select-pane -D"
|
||||
bind-key k "select-pane -U"
|
||||
bind-key l "select-pane -R"
|
||||
|
||||
# Integrate with the system clipboard
|
||||
bind-key -n C-S-c run "tmux save-buffer - | xclip -i -sel clipboard"
|
||||
bind-key -n C-S-v run "xclip -o -sel clipboard | tmux load-buffer -; tmux paste-buffer"
|
||||
unbind -n -Tcopy-mode-vi MouseDragEnd1Pane
|
||||
bind-key -Tcopy-mode-vi MouseDragEnd1Pane send -X copy-selection-and-cancel\; run "tmux save-buffer - | xclip -i > /dev/null"
|
||||
unbind-key MouseDown2Pane
|
||||
bind-key -n MouseDown2Pane run "xclip -o | tmux load-buffer -; tmux paste-buffer"
|
||||
|
||||
# Set the current working directory based on the current pane's current
|
||||
# working directory (if set; if not, use the pane's starting directory)
|
||||
# when creating # new windows and splits.
|
||||
bind-key c new-window -c '#{pane_current_path}'
|
||||
bind-key , rename-window '#{b:pane_current_path}'
|
||||
bind-key '"' split-window -c '#{pane_current_path}'
|
||||
bind-key % split-window -h -c '#{pane_current_path}'
|
||||
bind-key | split-window -h -c '#{pane_current_path}' -p 33
|
||||
bind-key _ split-window -v -c '#{pane_current_path}' -p 25
|
||||
|
||||
# Broadcast input
|
||||
bind-key C-x setw synchronize-panes
|
||||
|
||||
# Reload configuration
|
||||
bind-key r source .tmux.conf
|
||||
|
||||
# Better font term
|
||||
set -g default-terminal "tmux-256color"
|
||||
set -ga terminal-overrides ",alacritty:Tc"
|
||||
|
||||
# Neovim said to...
|
||||
set-option -sg escape-time 10
|
||||
|
||||
# Plugins
|
||||
set -g @plugin 'samoshkin/tmux-plugin-sysstat'
|
||||
set -g @plugin 'tmux-plugins/tmux-net-speed'
|
||||
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
22
tmux/bogster-dark.conf
Normal file
22
tmux/bogster-dark.conf
Normal file
@ -0,0 +1,22 @@
|
||||
# This tmux statusbar config was created by tmuxline.vim
|
||||
# on Wed, 16 Jun 2021
|
||||
|
||||
set -g status-justify "centre"
|
||||
set -g status "on"
|
||||
set -g status-left-style "none"
|
||||
set -g message-command-style "fg=#c6b8ad,bg=#415367"
|
||||
set -g status-right-style "none"
|
||||
set -g pane-active-border-style "fg=#b759dc"
|
||||
set -g status-style "none,bg=#161c23"
|
||||
set -g message-style "fg=#c6b8ad,bg=#415367"
|
||||
set -g pane-border-style "fg=#415367"
|
||||
set -g status-right-length "100"
|
||||
set -g status-left-length "100"
|
||||
setw -g window-status-activity-style "none,fg=#2c2e34,bg=#161c23"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "none,fg=#c6b8ad,bg=#161c23"
|
||||
setw -g window-status-last-style "none,fg=#c6b8ad,bg=#161c23"
|
||||
set -g status-left "#[fg=#36b2d4,bg=#2c2e34,bold] #S #[fg=#2c2e34,bg=#416753,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#416753] %R #[fg=#416753,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#161c23] #{sysstat_mem} 祝#{upload_speed} #[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#161c23] #{download_speed} #{sysstat_cpu} #[fg=#416753,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#416753] %a #[fg=#2c2e34,bg=#416753,nobold,nounderscore,noitalics]#[fg=#36b2d4,bg=#2c2e34,bold] #H #{prefix_highlight} "
|
||||
setw -g window-status-format "#[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#415367,bg=#161d23] #I #W #[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#161c23,bg=#34342c,nobold,nounderscore,noitalics]#[fg=#dc7759,bg=#34342c] #I #W #[fg=#34342c,bg=#161c23,nobold,nounderscore,noitalics]"
|
22
tmux/bogster-light.conf
Normal file
22
tmux/bogster-light.conf
Normal file
@ -0,0 +1,22 @@
|
||||
# This tmux statusbar config was created by tmuxline.vim
|
||||
# on Wed, 16 Jun 2021
|
||||
|
||||
set -g status-justify "centre"
|
||||
set -g status "on"
|
||||
set -g status-left-style "none"
|
||||
set -g message-command-style "fg=#c6b8ad,bg=#415367"
|
||||
set -g status-right-style "none"
|
||||
set -g pane-active-border-style "fg=#b759dc"
|
||||
set -g status-style "none,bg=#161c23"
|
||||
set -g message-style "fg=#c6b8ad,bg=#415367"
|
||||
set -g pane-border-style "fg=#415367"
|
||||
set -g status-right-length "100"
|
||||
set -g status-left-length "100"
|
||||
setw -g window-status-activity-style "none,fg=#2c2e34,bg=#161c23"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "none,fg=#c6b8ad,bg=#161c23"
|
||||
setw -g window-status-last-style "none,fg=#c6b8ad,bg=#161c23"
|
||||
set -g status-left "#[fg=#36b2d4,bg=#2c2e34,bold] #S #[fg=#2c2e34,bg=#416753,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#416753] %R #[fg=#416753,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#161c23] #{sysstat_mem} 祝#{upload_speed} #[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#161c23] #{download_speed} #{sysstat_cpu} #[fg=#416753,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#c6b8ad,bg=#416753] %a #[fg=#2c2e34,bg=#416753,nobold,nounderscore,noitalics]#[fg=#36b2d4,bg=#2c2e34,bold] #H #{prefix_highlight} "
|
||||
setw -g window-status-format "#[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]#[fg=#415367,bg=#161d23] #I #W #[fg=#161c23,bg=#161c23,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#161c23,bg=#34342c,nobold,nounderscore,noitalics]#[fg=#dc7759,bg=#34342c] #I #W #[fg=#34342c,bg=#161c23,nobold,nounderscore,noitalics]"
|
22
tmux/sonokai.conf
Normal file
22
tmux/sonokai.conf
Normal file
@ -0,0 +1,22 @@
|
||||
# This tmux statusbar config was created by tmuxline.vim
|
||||
# on Wed, 16 Jun 2021
|
||||
|
||||
set -g status-justify "centre"
|
||||
set -g status "on"
|
||||
set -g status-left-style "none"
|
||||
set -g message-command-style "fg=#e2e2e3,bg=#414550"
|
||||
set -g status-right-style "none"
|
||||
set -g pane-active-border-style "fg=#85d3f2"
|
||||
set -g status-style "none,bg=#33353f"
|
||||
set -g message-style "fg=#e2e2e3,bg=#414550"
|
||||
set -g pane-border-style "fg=#414550"
|
||||
set -g status-right-length "100"
|
||||
set -g status-left-length "100"
|
||||
setw -g window-status-activity-style "none,fg=#85d3f2,bg=#33353f"
|
||||
setw -g window-status-separator ""
|
||||
setw -g window-status-style "none,fg=#e2e2e3,bg=#33353f"
|
||||
setw -g window-status-last-style "none,fg=#e2e2e3,bg=#33353f"
|
||||
set -g status-left "#[fg=#2c2e34,bg=#85d3f2,bold] #S #[fg=#85d3f2,bg=#414550,nobold,nounderscore,noitalics]#[fg=#e2e2e3,bg=#414550] %R #[fg=#414550,bg=#33353f,nobold,nounderscore,noitalics]#[fg=#e2e2e3,bg=#33353f] #{sysstat_mem} 祝#{upload_speed} #[fg=#33353f,bg=#33353f,nobold,nounderscore,noitalics]"
|
||||
set -g status-right "#[fg=#33353f,bg=#33353f,nobold,nounderscore,noitalics]#[fg=#e2e2e3,bg=#33353f] #{download_speed} #{sysstat_cpu} #[fg=#414550,bg=#33353f,nobold,nounderscore,noitalics]#[fg=#e2e2e3,bg=#414550] %a #[fg=#85d3f2,bg=#414550,nobold,nounderscore,noitalics]#[fg=#2c2e34,bg=#85d3f2,bold] #H #{prefix_highlight} "
|
||||
setw -g window-status-format "#[fg=#33353f,bg=#33353f,nobold,nounderscore,noitalics]#[default] #I #W #[fg=#33353f,bg=#33353f,nobold,nounderscore,noitalics]"
|
||||
setw -g window-status-current-format "#[fg=#33353f,bg=#414550,nobold,nounderscore,noitalics]#[fg=#e2e2e3,bg=#414550] #I #W #[fg=#414550,bg=#33353f,nobold,nounderscore,noitalics]"
|
@ -206,21 +206,21 @@ plugins {
|
||||
// For more examples, see: https://github.com/zellij-org/zellij/tree/main/example/themes
|
||||
// Once these themes are defined, one of them should to be selected in the "theme" section of this file
|
||||
//
|
||||
themes {
|
||||
dracula {
|
||||
fg 248 248 242
|
||||
bg 40 42 54
|
||||
red 255 85 85
|
||||
green 80 250 123
|
||||
yellow 241 250 140
|
||||
blue 98 114 164
|
||||
magenta 255 121 198
|
||||
orange 255 184 108
|
||||
cyan 139 233 253
|
||||
black 0 0 0
|
||||
white 255 255 255
|
||||
}
|
||||
}
|
||||
// themes {
|
||||
// dracula {
|
||||
// fg 248 248 242
|
||||
// bg 40 42 54
|
||||
// red 255 85 85
|
||||
// green 80 250 123
|
||||
// yellow 241 250 140
|
||||
// blue 98 114 164
|
||||
// magenta 255 121 198
|
||||
// orange 255 184 108
|
||||
// cyan 139 233 253
|
||||
// black 0 0 0
|
||||
// white 255 255 255
|
||||
// }
|
||||
// }
|
||||
|
||||
themes {
|
||||
bogster-dark {
|
||||
@ -243,7 +243,7 @@ themes {
|
||||
//
|
||||
// theme "default"
|
||||
|
||||
theme "{{zellij_theme}}"
|
||||
theme "bogster-dark"
|
||||
|
||||
// The name of the default layout to load on startup
|
||||
// Default: "default"
|
||||
|
@ -1,19 +0,0 @@
|
||||
# Themes
|
||||
|
||||
Themes can contain different flavors in one file, or can be created as individual files.
|
||||
|
||||
Example:
|
||||
|
||||
```
|
||||
gruvbox.kdl
|
||||
├─ gruvbox-light
|
||||
└─ gruvbox-dark
|
||||
|
||||
or
|
||||
|
||||
gruvbox-light.kdl
|
||||
└─ gruvbox-light
|
||||
|
||||
gruvbox-dark.kdl
|
||||
└─ gruvbox-dark
|
||||
```
|
@ -1,60 +0,0 @@
|
||||
// Catppuccin Theme:
|
||||
// https://github.com/catppuccin/catppuccin
|
||||
|
||||
themes {
|
||||
catppuccin-latte {
|
||||
bg "#acb0be" // Surface2
|
||||
fg "#acb0be" // Surface2
|
||||
red "#d20f39"
|
||||
green "#40a02b"
|
||||
blue "#1e66f5"
|
||||
yellow "#df8e1d"
|
||||
magenta "#ea76cb" // Pink
|
||||
orange "#fe640b" // Peach
|
||||
cyan "#04a5e5" // Sky
|
||||
black "#dce0e8" // Crust
|
||||
white "#4c4f69" // Text
|
||||
}
|
||||
|
||||
catppuccin-frappe {
|
||||
bg "#626880" // Surface2
|
||||
fg "#c6d0f5"
|
||||
red "#e78284"
|
||||
green "#a6d189"
|
||||
blue "#8caaee"
|
||||
yellow "#e5c890"
|
||||
magenta "#f4b8e4" // Pink
|
||||
orange "#ef9f76" // Peach
|
||||
cyan "#99d1db" // Sky
|
||||
black "#292c3c" // Mantle
|
||||
white "#c6d0f5"
|
||||
}
|
||||
|
||||
catppuccin-macchiato {
|
||||
bg "#5b6078" // Surface2
|
||||
fg "#cad3f5"
|
||||
red "#ed8796"
|
||||
green "#a6da95"
|
||||
blue "#8aadf4"
|
||||
yellow "#eed49f"
|
||||
magenta "#f5bde6" // Pink
|
||||
orange "#f5a97f" // Peach
|
||||
cyan "#91d7e3" // Sky
|
||||
black "#1e2030" // Mantle
|
||||
white "#cad3f5"
|
||||
}
|
||||
|
||||
catppuccin-mocha {
|
||||
bg "#585b70" // Surface2
|
||||
fg "#cdd6f4"
|
||||
red "#f38ba8"
|
||||
green "#a6e3a1"
|
||||
blue "#89b4fa"
|
||||
yellow "#f9e2af"
|
||||
magenta "#f5c2e7" // Pink
|
||||
orange "#fab387" // Peach
|
||||
cyan "#89dceb" // Sky
|
||||
black "#181825" // Mantle
|
||||
white "#cdd6f4"
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
// From https://github.com/dracula/zellij
|
||||
|
||||
themes {
|
||||
dracula {
|
||||
fg 248 248 242
|
||||
bg 40 42 54
|
||||
black 0 0 0
|
||||
red 255 85 85
|
||||
green 80 250 123
|
||||
yellow 241 250 140
|
||||
blue 98 114 164
|
||||
magenta 255 121 198
|
||||
cyan 139 233 253
|
||||
white 255 255 255
|
||||
orange 255 184 108
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
themes {
|
||||
everforest-dark {
|
||||
bg "#2b3339"
|
||||
fg "#d3c6aa"
|
||||
black "#4b565c"
|
||||
red "#e67e80"
|
||||
green "#a7c080"
|
||||
yellow "#dbbc7f"
|
||||
blue "#7fbbb3"
|
||||
magenta "#d699b6"
|
||||
cyan "#83c092"
|
||||
white "#d3c6aa"
|
||||
orange "#FF9E64"
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
themes {
|
||||
everforest-light {
|
||||
bg "#fff9e8"
|
||||
fg "#5c6a72"
|
||||
black "#5c6a72"
|
||||
red "#f85552"
|
||||
green "#8da101"
|
||||
yellow "#dfa000"
|
||||
blue "#3a94c5"
|
||||
magenta "#df69ba"
|
||||
cyan "#35a77c"
|
||||
white "#dfddc8"
|
||||
orange "#FF9E64"
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
themes {
|
||||
gruvbox-light {
|
||||
fg 60 56 54
|
||||
bg 251 82 75
|
||||
black 40 40 40
|
||||
red 205 75 69
|
||||
green 152 151 26
|
||||
yellow 215 153 33
|
||||
blue 69 133 136
|
||||
magenta 177 98 134
|
||||
cyan 104 157 106
|
||||
white 213 196 161
|
||||
orange 214 93 14
|
||||
}
|
||||
gruvbox-dark {
|
||||
fg 213 196 161
|
||||
bg 40 40 40
|
||||
black 60 56 54
|
||||
red 204 36 29
|
||||
green 152 151 26
|
||||
yellow 215 153 33
|
||||
blue 69 133 136
|
||||
magenta 177 98 134
|
||||
cyan 104 157 106
|
||||
white 251 241 199
|
||||
orange 214 93 14
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +0,0 @@
|
||||
themes {
|
||||
kanagawa {
|
||||
fg "#DCD7BA"
|
||||
bg "#1F1F28"
|
||||
red "#C34043"
|
||||
green "#76946A"
|
||||
yellow "#FF9E3B"
|
||||
blue "#7E9CD8"
|
||||
magenta "#957FB8"
|
||||
orange "#FFA066"
|
||||
cyan "#7FB4CA"
|
||||
black "#16161D"
|
||||
white "#DCD7BA"
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
// orange-green-blue
|
||||
|
||||
themes {
|
||||
menace {
|
||||
fg "#e3a555"
|
||||
bg 40 42 54
|
||||
red "#f74c17"
|
||||
green 80 250 123
|
||||
yellow 241 250 140
|
||||
blue 98 114 164
|
||||
magenta 255 121 198
|
||||
orange 255 184 108
|
||||
cyan 139 233 253
|
||||
black "#04399d"
|
||||
white 255 255 255
|
||||
}
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
molokai-dark {
|
||||
fg 248 248 240
|
||||
bg 27 29 30
|
||||
black 0 0 0
|
||||
red 255 0 0
|
||||
green 0 140 0
|
||||
yellow 255 255 0
|
||||
blue 102 217 239
|
||||
magenta 174 129 255
|
||||
cyan 0 255 255
|
||||
white 255 255 255
|
||||
orange 253 151 31
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +0,0 @@
|
||||
themes {
|
||||
nord {
|
||||
fg 216 222 233 // #D8DEE9
|
||||
bg 46 52 64 // #2E3440
|
||||
black 59 66 82 // #3B4252
|
||||
red 191 97 106 // #BF616A
|
||||
green 163 190 140 // #A3BE8C
|
||||
yellow 235 203 139 // #EBCB8B
|
||||
blue 129 161 193 // #81A1C1
|
||||
magenta 180 142 173 // #B48EAD
|
||||
cyan 136 192 208 // #88C0D0
|
||||
white 229 233 240 // #E5E9F0
|
||||
orange 208 135 112 // #D08770
|
||||
}
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
one-half-dark {
|
||||
fg 220 223 228
|
||||
bg 40 44 52
|
||||
black 27 29 35
|
||||
red 227 63 76
|
||||
green 152 195 121
|
||||
yellow 229 192 123
|
||||
blue 97 175 239
|
||||
magenta 198 120 221
|
||||
cyan 86 182 194
|
||||
white 233 225 254
|
||||
orange 216 133 76
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +0,0 @@
|
||||
themes {
|
||||
pencil-light {
|
||||
fg "#005F87"
|
||||
bg "#f1f1f1"
|
||||
black "#f1f1f1"
|
||||
red "#B6D6FD"
|
||||
green "#10A778"
|
||||
yellow "#A89C14"
|
||||
blue "#008EC4"
|
||||
magenta "#B6D6FD"
|
||||
cyan "#20A5BA"
|
||||
white "#424242"
|
||||
orange "#D75F5F"
|
||||
}
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
solarized-dark {
|
||||
fg 253 246 227
|
||||
bg 0 43 54
|
||||
black 7 54 66
|
||||
red 220 50 47
|
||||
green 133 153 0
|
||||
yellow 181 137 0
|
||||
blue 38 139 210
|
||||
magenta 211 54 130
|
||||
cyan 42 161 152
|
||||
white 238 232 213
|
||||
orange 203 75 22
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
solarized-light {
|
||||
fg 101 123 131
|
||||
bg 253 246 227
|
||||
black 7 54 66
|
||||
red 220 50 47
|
||||
green 133 153 0
|
||||
yellow 181 137 0
|
||||
blue 38 139 210
|
||||
magenta 211 54 130
|
||||
cyan 42 161 152
|
||||
white 238 232 213
|
||||
orange 203 75 22
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +0,0 @@
|
||||
themes {
|
||||
tokyo-night-dark {
|
||||
fg 169 177 214
|
||||
bg 26 27 38
|
||||
black 56 62 90
|
||||
red 249 51 87
|
||||
green 158 206 106
|
||||
yellow 224 175 104
|
||||
blue 122 162 247
|
||||
magenta 187 154 247
|
||||
cyan 42 195 222
|
||||
white 192 202 245
|
||||
orange 255 158 100
|
||||
}
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
tokyo-night-light {
|
||||
fg 52 59 88
|
||||
bg 213 214 219
|
||||
black 15 15 20
|
||||
red 186 75 96
|
||||
green 72 94 48
|
||||
yellow 143 94 21
|
||||
blue 52 84 138
|
||||
magenta 90 74 120
|
||||
cyan 15 75 110
|
||||
white 130 137 172
|
||||
orange 150 80 39
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
tokyo-night-storm {
|
||||
fg 169 177 214
|
||||
bg 36 40 59
|
||||
black 56 62 90
|
||||
red 249 51 87
|
||||
green 158 206 106
|
||||
yellow 224 175 104
|
||||
blue 122 162 247
|
||||
magenta 187 154 247
|
||||
cyan 42 195 222
|
||||
white 192 202 245
|
||||
orange 255 158 100
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +0,0 @@
|
||||
themes {
|
||||
tokyo-night {
|
||||
fg 169 177 214
|
||||
bg 26 27 38
|
||||
black 56 62 90
|
||||
red 249 51 87
|
||||
green 158 206 106
|
||||
yellow 224 175 104
|
||||
blue 122 162 247
|
||||
magenta 187 154 247
|
||||
cyan 42 195 222
|
||||
white 192 202 245
|
||||
orange 255 158 100
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user