From c56a3edcb64643785941caea60e7c99e234c6018 Mon Sep 17 00:00:00 2001 From: "eric.marin" Date: Wed, 29 Oct 2025 16:23:58 +0100 Subject: update --- nvim/lua/plugins/neopywal.lua | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) (limited to 'nvim/lua/plugins/neopywal.lua') 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, } -- cgit v1.2.3