mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
trying catppuccin on alacritty
This commit is contained in:
parent
361d36e0b3
commit
ceda482e67
2 changed files with 68 additions and 21 deletions
|
|
@ -14,30 +14,77 @@
|
|||
|
||||
colors = {
|
||||
primary = {
|
||||
background = "#0d1117";
|
||||
foreground = "#b3b1ad";
|
||||
background = "#0D1117";
|
||||
foreground = "#CDD6F4";
|
||||
};
|
||||
|
||||
cursor = {
|
||||
text = "#1E1E2E";
|
||||
cursor = "#F5E0DC";
|
||||
};
|
||||
|
||||
search = {
|
||||
matches = {
|
||||
foreground = "#1E1E2E";
|
||||
background = "#A6ADC8";
|
||||
};
|
||||
focused_match = {
|
||||
foreground = "#1E1E2E";
|
||||
background = "#A6E3A1";
|
||||
};
|
||||
footer_bar = {
|
||||
foreground = "#1E1E2E";
|
||||
background = "#A6ADC8";
|
||||
};
|
||||
};
|
||||
|
||||
hints = {
|
||||
start = {
|
||||
foreground = "#1E1E2E";
|
||||
background = "#F9E2AF";
|
||||
};
|
||||
end = {
|
||||
foreground = "#1E1E2E";
|
||||
background = "#A6ADC8";
|
||||
};
|
||||
};
|
||||
|
||||
selection = {
|
||||
text = "#1E1E2E";
|
||||
background = "#F5E0DC";
|
||||
};
|
||||
|
||||
normal = {
|
||||
black = "#484f58";
|
||||
red = "#ff7b72";
|
||||
green = "#3fb950";
|
||||
yellow = "#d29922";
|
||||
blue = "#58a6ff";
|
||||
magenta = "#bc8cff";
|
||||
cyan = "#39c5cf";
|
||||
white = "#b1bac4";
|
||||
black = "#45475A";
|
||||
red = "#F38BA8";
|
||||
green = "#A6E3A1";
|
||||
yellow = "#F9E2AF";
|
||||
blue = "#89B4FA";
|
||||
magenta = "#F5C2E7";
|
||||
cyan = "#94E2D5";
|
||||
white = "#BAC2DE";
|
||||
};
|
||||
|
||||
bright = {
|
||||
black = "#6e7681";
|
||||
red = "#ffa198";
|
||||
green = "#56d364";
|
||||
yellow = "#e3b341";
|
||||
blue = "#79c0ff";
|
||||
magenta = "#d2a8ff";
|
||||
cyan = "#56d4dd";
|
||||
white = "#f0f6fc";
|
||||
black = "#585B70";
|
||||
red = "#F38BA8";
|
||||
green = "#A6E3A1";
|
||||
yellow = "#F9E2AF";
|
||||
blue = "#89B4FA";
|
||||
magenta = "#F5C2E7";
|
||||
cyan = "#94E2D5";
|
||||
white = "#A6ADC8";
|
||||
};
|
||||
|
||||
dim = {
|
||||
black = "#45475A";
|
||||
red = "#F38BA8";
|
||||
green = "#A6E3A1";
|
||||
yellow = "#F9E2AF";
|
||||
blue = "#89B4FA";
|
||||
magenta = "#F5C2E7";
|
||||
cyan = "#94E2D5";
|
||||
white = "#BAC2DE";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
@ -67,10 +114,10 @@
|
|||
];
|
||||
};
|
||||
|
||||
size = 14;
|
||||
size = 16;
|
||||
|
||||
cursor = {
|
||||
color = "#ffffff";
|
||||
color = "#F5E0DC";
|
||||
style = {
|
||||
shape = "Block";
|
||||
blinking = "Always";
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ require("lazy").setup({
|
|||
version = false, -- always use the latest git commit
|
||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||
},
|
||||
install = { colorscheme = { "tokyonight", "habamax" } },
|
||||
install = { colorscheme = { "catppuccin" } },
|
||||
checker = { enabled = true }, -- automatically check for plugin updates
|
||||
performance = {
|
||||
rtp = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue