-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneovim.lua
More file actions
24 lines (24 loc) · 907 Bytes
/
Copy pathneovim.lua
File metadata and controls
24 lines (24 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- Clawmarchy Neovim AMOLED Overrides
-- Static override -- must be manually updated when palette changes
-- Update: Manual -- accent changes do NOT affect this file (only background overrides)
return {
{
"folke/tokyonight.nvim",
priority = 1000,
opts = {
style = "night",
on_colors = function(colors)
colors.bg = "#000000" -- colors.toml: background
colors.bg_dark = "#000000" -- colors.toml: background
colors.bg_float = "#0a0a12" -- UNMAPPED: tokyonight-specific dark surface (intentional, not in colors.toml)
colors.bg_sidebar = "#0a0a12" -- UNMAPPED: tokyonight-specific dark surface (intentional, not in colors.toml)
end,
},
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight-night",
},
},
}