removed redefinitions of numbered colors from alacritty config
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -52,7 +52,6 @@ vim.keymap.set("n", "<leader>-", "<C-x>", opts) -- decrement
|
||||
vim.keymap.set("n", "<leader>v", "<C-w>v", opts) -- split window vertically
|
||||
vim.keymap.set("n", "<leader>h", "<C-w>s", opts) -- split window horizontally
|
||||
vim.keymap.set("n", "<leader>se", "<C-w>=", opts) -- make split windows equal width & height
|
||||
vim.keymap.set("n", "<leader>xs", ":close<CR>", opts) -- close current split window
|
||||
|
||||
-- Navigate between splits
|
||||
vim.keymap.set("n", "<C-k>", ":wincmd k<CR>", opts)
|
||||
|
||||
Reference in New Issue
Block a user