blob: 7c37dbe412b2ab25c7fe41332ac0a69779833f26 (
plain) (
blame)
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
|
local init = function()
vim.cmd.colorscheme("neopywal")
end
local config = function()
require("neopywal").setup({
plugins = {
treesitter = true
},
custom_colors = {},
custom_highlights = {},
use_palette = {
light = "wallust",
dark = "wallust",
},
})
end
return {
"RedsXDD/neopywal.nvim",
lazy = false,
name = "neopywal",
init = init,
config = config,
priority = 1000,
}
|