AutoYADM commit: 2025-02-06 22:30:03

This commit is contained in:
Daniel Fichtinger 2025-02-06 22:30:03 -05:00
parent 0ab5d85d4c
commit 31ffbc8bd7
5 changed files with 24 additions and 59 deletions

View file

@ -7,7 +7,7 @@ undercurl = true
# maybe it's better to just get used to using the clipboards separately? # maybe it's better to just get used to using the clipboards separately?
# Wouldn't be a bad idea to encorporate two clipboards into my workflow, # Wouldn't be a bad idea to encorporate two clipboards into my workflow,
# especially for stuff like swapping selections and stuff... # especially for stuff like swapping selections and stuff...
# default-yank-register = '+' default-yank-register = '+'
cursorline = true cursorline = true
bufferline = "multiple" bufferline = "multiple"
color-modes = true color-modes = true
@ -70,8 +70,8 @@ i = "extend_char_right"
I = "extend_to_line_end" I = "extend_to_line_end"
k = "extend_search_next" k = "extend_search_next"
K = "extend_search_prev" K = "extend_search_prev"
j = "extend_next_sub_word_end" l = "extend_next_sub_word_end"
J = "extend_next_long_word_end" L = "extend_next_long_word_end"
[keys.normal.k] [keys.normal.k]
m = "match_brackets" m = "match_brackets"
k = "match_brackets" k = "match_brackets"
@ -102,3 +102,6 @@ H = "no_op"
J = "no_op" J = "no_op"
K = "no_op" K = "no_op"
L = "no_op" L = "no_op"
[keys.normal.g]
z = "goto_window_center"

View file

@ -133,7 +133,7 @@ keybinds clear-defaults=true {
bind "Alt v" { NewPane "right"; } bind "Alt v" { NewPane "right"; }
bind "Alt s" { NewPane "down"; } bind "Alt s" { NewPane "down"; }
bind "Alt x" { CloseFocus; } bind "Alt x" { CloseFocus; }
bind "Ctrl Q" { Quit; } // bind "Ctrl Q" { Quit; }
} }
shared_except "locked" "move" { shared_except "locked" "move" {
bind "Ctrl M" { SwitchToMode "move"; } bind "Ctrl M" { SwitchToMode "move"; }
@ -160,7 +160,7 @@ keybinds clear-defaults=true {
bind "Ctrl b" { SwitchToMode "tmux"; } bind "Ctrl b" { SwitchToMode "tmux"; }
} }
shared_except "locked" "scroll" "search" { shared_except "locked" "scroll" "search" {
bind "Ctrl ?" { SwitchToMode "scroll"; } bind "Alt /" { SwitchToMode "scroll"; }
} }
shared_except "locked" "tab" { shared_except "locked" "tab" {
bind "Ctrl t" { SwitchToMode "tab"; } bind "Ctrl t" { SwitchToMode "tab"; }
@ -271,7 +271,7 @@ load_plugins {
// Default: default // Default: default
// //
// theme "dracula" // theme "dracula"
theme "reddy" theme "ashen"
// Choose the base input mode of zellij. // Choose the base input mode of zellij.
// Default: normal // Default: normal
// //

View file

@ -0,0 +1,15 @@
themes {
ashen {
fg "#f5f5f5"
bg "#121212"
black "#121212"
red "#B14242"
green "#D87C4A"
yellow "#E49A44"
orange "#D87C4A"
magenta "#a7a7a7"
cyan "#b4b4b4"
white "#d5d5d5"
blue "#4A8B8B"
}
}

View file

@ -1,15 +0,0 @@
themes {
reddy {
fg "#a7a7a7"
bg "#121212"
black "#282828"
red "#CC241D"
green "#933737"
yellow "#D79921"
orange "#379393"
magenta "#ac2020"
cyan "#bd4c4c"
white "#f5f5f5"
blue "#f79000"
}
}

View file

@ -1,38 +0,0 @@
{
background = "#121212",
black = "#000000",
complement = "#379393",
diagnostic_error = "#ac2020",
diagnostic_hint = "#d5d5d5",
diagnostic_info = "#d5d5d5",
diagnostic_warning = "#ff7700",
diff_add = "#f5f5f5",
diff_change = "#737373",
diff_delete = "#ac2020",
error = "#ac2020",
gray0 = "#111111",
gray1 = "#282a2e",
gray2 = "#373b41",
gray3 = "#969896",
gray4 = "#b4b7b4",
gray5 = "#c5c8c6",
gray6 = "#e0e0e0",
gray7 = "#ffffff",
infoborder = "#215858",
noir_0 = "#ffffff",
noir_1 = "#f5f5f5",
noir_2 = "#d5d5d5",
noir_3 = "#b4b4b4",
noir_4 = "#a7a7a7",
noir_5 = "#949494",
noir_6 = "#737373",
noir_7 = "#535353",
noir_8 = "#323232",
noir_9 = "#212121",
none = "none",
primary = "#933737",
secondary = "#bd4c4c",
warn = "#f79000",
warnborder = "#79491d",
white = "#ffffff"
}