-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneovim.lua
More file actions
45 lines (43 loc) · 1.45 KB
/
neovim.lua
File metadata and controls
45 lines (43 loc) · 1.45 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
-- ────────────────────────────────────────────────────────────
-- Omarchy Custom Theme for Neovim
-- Generated by Omarchist
-- ────────────────────────────────────────────────────────────
return {
{
"bjarneo/aether.nvim",
name = "guicybercode_omarchy",
priority = 1000,
opts = {
disable_italics = false,
colors = {
-- Monotone shades (base00-base07)
base00 = "#0F0F0F", -- Background
base01 = "#1B1B1B", -- Panels
base02 = "#3A403B", -- Selection
base03 = "#6E6A5A", -- Comments (Ash Bronze - improved readability)
base04 = "#7B726A", -- Dim text
base05 = "#E0D4C2", -- Foreground
base06 = "#F3E9DA", -- Bright foreground
base07 = "#FFFFFF", -- White
-- Accent colors
base08 = "#8B0000", -- Errors
base09 = "#FFAA00", -- Constants
base0A = "#E24C00", -- Keywords
base0B = "#D87F3E", -- Strings
base0C = "#A67C52", -- Support
base0D = "#FF6347", -- Functions
base0E = "#BF0000", -- Keywords alt
base0F = "#FF4500", -- Deprecated
},
},
config = function(_, opts)
require("aether").setup(opts)
vim.cmd.colorscheme("aether")
require("aether.hotreload").setup()
end,
},
{
"LazyVim/LazyVim",
opts = { colorscheme = "aether" },
},
}