-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathneovim.lua
More file actions
61 lines (55 loc) · 1.48 KB
/
Copy pathneovim.lua
File metadata and controls
61 lines (55 loc) · 1.48 KB
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
return {
{
"bjarneo/aether.nvim",
branch = "v3",
name = "aether",
priority = 1000,
opts = {
colors = {
bg = "#0f0f0f",
dark_bg = "#0c0c0c",
darker_bg = "#0a0a0a",
lighter_bg = "#5e5959",
bg_highlight = "#757070",
fg = "#eadccc",
dark_fg = "#e6caab",
light_fg = "#eadccc",
bright_fg = "#e6caab",
muted = "#5e5959",
red = "#e25d6c",
yellow = "#f4bb54",
orange = "#e9838f",
green = "#cea37f",
cyan = "#e8ab3b",
blue = "#e2be8a",
purple = "#f66151",
brown = "#edb95a",
bright_red = "#e25d6c",
bright_yellow = "#f4bb54",
bright_green = "#cea37f",
bright_cyan = "#e8ab3b",
bright_blue = "#e2be8a",
bright_purple = "#f66151",
accent = "#e2be8a",
cursor = "#eadccc",
foreground = "#eadccc",
background = "#0f0f0f",
selection = "#0f0f0f",
selection_foreground = "#eadccc",
selection_background = "#0f0f0f",
},
},
-- set up hot reload
config = function(_, opts)
require("aether").setup(opts)
vim.cmd.colorscheme("aether")
require("aether.hotreload").setup()
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "aether",
},
},
}