aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/neopywal.lua
diff options
context:
space:
mode:
authoreric.marin <maarin.eric@gmail.com>2025-10-29 16:23:58 +0100
committereric.marin <maarin.eric@gmail.com>2025-11-04 09:25:10 +0100
commitc56a3edcb64643785941caea60e7c99e234c6018 (patch)
tree6f3185270533ca34da515de4346c997f7488fe2c /nvim/lua/plugins/neopywal.lua
parentab6d61c5fc5f8adebd46691f94cf35c32ae631db (diff)
downloaddotfiles-c56a3edcb64643785941caea60e7c99e234c6018.tar.gz
dotfiles-c56a3edcb64643785941caea60e7c99e234c6018.zip
update
Diffstat (limited to '')
-rw-r--r--nvim/lua/plugins/neopywal.lua33
1 files changed, 20 insertions, 13 deletions
diff --git a/nvim/lua/plugins/neopywal.lua b/nvim/lua/plugins/neopywal.lua
index 31a9b47..7c37dbe 100644
--- a/nvim/lua/plugins/neopywal.lua
+++ b/nvim/lua/plugins/neopywal.lua
@@ -1,19 +1,26 @@
local init = function()
- vim.cmd.colorscheme("neopywal")
+ vim.cmd.colorscheme("neopywal")
end
-local opts = {
- use_wallust = true,
- plugins = {
- treesitter = true
- }
-}
+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,
- opts = opts,
- priority = 1000,
+ "RedsXDD/neopywal.nvim",
+ lazy = false,
+ name = "neopywal",
+ init = init,
+ config = config,
+ priority = 1000,
}