diff --git a/alacritty/.config/alacritty/themes/zegonix.toml b/alacritty/.config/alacritty/themes/zegonix.toml index a9fa38f..699e607 100644 --- a/alacritty/.config/alacritty/themes/zegonix.toml +++ b/alacritty/.config/alacritty/themes/zegonix.toml @@ -38,64 +38,3 @@ magenta = "0x9034B2" cyan = "0x109EA8" white = "0xC8C8B8" - -# [[colors.indexed_colors]] -# index = -# color = - -# pastel blue (red'ish) -[[colors.indexed_colors]] -index = 0x10 -color = "0xA3BCF5" -# pastel magenta -[[colors.indexed_colors]] -index = 0x11 -color = "0xD75B99" -# pastel green yellow'ish -[[colors.indexed_colors]] -index = 0x12 -color = "0x85C567" -# pastel yellow -[[colors.indexed_colors]] -index = 0x13 -color = "0xF1EAA2" -# pastel green blue'ish -[[colors.indexed_colors]] -index = 0x14 -color = "0x81CFC6" -# pastel cyan -[[colors.indexed_colors]] -index = 0x15 -color = "0x3EA389" -# pastel orange -[[colors.indexed_colors]] -index = 0x16 -color = "0xE0BA85" - -## shades of grey -[[colors.indexed_colors]] -index = 0x18 -color = "0x181818" -[[colors.indexed_colors]] -index = 0x19 -color = "0x383838" -[[colors.indexed_colors]] -index = 0x1A -color = "0x585858" -[[colors.indexed_colors]] -index = 0x1B -color = "0x787878" -[[colors.indexed_colors]] -index = 0x1C -color = "0x989898" -[[colors.indexed_colors]] -index = 0x1D -color = "0xB8B8B8" -[[colors.indexed_colors]] -index = 0x1E -color = "0xD8D8D8" - -# dark red -[[colors.indexed_colors]] -index = 0x20 -color = "0xC00008" diff --git a/eza/.config/eza/theme.yml b/eza/.config/eza/theme.yml index 0bbfcf8..da78d9a 100644 --- a/eza/.config/eza/theme.yml +++ b/eza/.config/eza/theme.yml @@ -109,9 +109,9 @@ links: file_type: image: - foreground: 17 + foreground: "#D75B99" video: - foreground: 17 + foreground: "#D75B99" # music # crypto # document @@ -119,7 +119,7 @@ file_type: foreground: magenta # temp compiled: - foreground: 19 + foreground: "#F1EAA2" build: foreground: 11 source: @@ -182,7 +182,7 @@ punctuation: # foreground: magenta broken_symlink: - foreground: 32 + foreground: "#C00008" broken_path_overlay: - foreground: 32 + foreground: "#C00008" diff --git a/navigate/.config/navigate/navigate.toml b/navigate/.config/navigate/navigate.toml index e1fc6e5..c9a4149 100644 --- a/navigate/.config/navigate/navigate.toml +++ b/navigate/.config/navigate/navigate.toml @@ -4,8 +4,9 @@ show_stack_on_pop = false show_books_on_bookmark = false [format] -stack_separator = " - " -bookmarks_separator = " - " +stack_separator = " = " +bookmarks_separator = " = " +stack_hide_numbers = false show_home_as_tilde = true align_separators = true diff --git a/nvim/.config/nvim/lua/zegonix/keybindings.lua b/nvim/.config/nvim/lua/zegonix/keybindings.lua index 0466eba..2d4d615 100644 --- a/nvim/.config/nvim/lua/zegonix/keybindings.lua +++ b/nvim/.config/nvim/lua/zegonix/keybindings.lua @@ -49,10 +49,9 @@ vim.keymap.set("n", "+", "", opts) -- increment vim.keymap.set("n", "-", "", opts) -- decrement -- Window management -vim.keymap.set("n", "v", "v", opts) -- split window vertically -vim.keymap.set("n", "h", "s", opts) -- split window horizontally -vim.keymap.set("n", "se", "=", opts) -- make split windows equal width & height -vim.keymap.set("n", "xs", ":close", opts) -- close current split window +vim.keymap.set("n", "v", "v", opts) -- split window vertically +vim.keymap.set("n", "h", "s", opts) -- split window horizontally +vim.keymap.set("n", "se", "=", opts) -- make split windows equal width & height -- Navigate between splits vim.keymap.set("n", "", ":wincmd k", opts)