-
Notifications
You must be signed in to change notification settings - Fork 2
/
nvim.lua
99 lines (98 loc) · 2.64 KB
/
nvim.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
-- Packer.nvim example config
use({
"catppuccin/nvim",
as = "catppuccin",
config = function()
require("catppuccin").setup({
color_overrides = {
-- Carburetor
mocha = {
rosewater = "#ffd7d9",
flamingo = "#ffb3b8",
pink = "#ff7eb6",
mauve = "#d4bbff",
red = "#fa4d56",
maroon = "#ff8389",
peach = "#ff832b",
yellow = "#fddc69",
green = "#42be65",
teal = "#3ddbd9",
sky = "#82cfff",
sapphire = "#78a9ff",
blue = "#4589ff",
lavender = "#be95ff",
text = "#f4f4f4",
subtext1 = "#e0e0e0",
subtext0 = "#c6c6c6",
overlay2 = "#a8a8a8",
overlay1 = "#8d8d8d",
overlay0 = "#6f6f6f",
surface2 = "#525252",
surface1 = "#393939",
surface0 = "#262626",
base = "#161616",
mantle = "#0b0b0b",
crust = "#000000"
},
-- Carburetor Cool
macchiato = {
rosewater = "#ffd7d9",
flamingo = "#ffb3b8",
pink = "#ff7eb6",
red = "#fa4d56",
maroon = "#ff8389",
peach = "#ff832b",
yellow = "#fddc69",
green = "#42be65",
teal = "#3ddbd9",
sky = "#82cfff",
sapphire = "#78a9ff",
blue = "#4589ff",
lavender = "#be95ff",
mauve = "#d4bbff",
text = "#f2f4f8",
subtext1 = "#dde1E6",
subtext0 = "#c1c7cd",
overlay2 = "#a2a9b0",
overlay1 = "#878d96",
overlay0 = "#697077",
surface2 = "#4d5358",
surface1 = "#343a3f",
surface0 = "#21272a",
base = "#121619",
mantle = "#090b0c",
crust = "#000000"
},
-- Carburetor Warm
frappe = {
rosewater = "#ffd7d9",
flamingo = "#ffb3b8",
pink = "#ff7eb6",
mauve = "#d4bbff",
red = "#fa4d56",
maroon = "#ff8389",
peach = "#ff832b",
yellow = "#fddc69",
green = "#42be65",
teal = "#3ddbd9",
sky = "#82cfff",
sapphire = "#78a9ff",
blue = "#4589ff",
lavender = "#be95ff",
text = "#f7f3f2",
subtext1 = "#e5e0df",
subtext0 = "#cac5c4",
overlay2 = "#ada8a8",
overlay1 = "#8f8b8b",
overlay0 = "#726e6e",
surface2 = "#565151",
surface1 = "#3c3838",
surface0 = "#272525",
base = "#171414",
mantle = "#0b0a0a",
crust = "#000000"
}
}
})
end
})