nvim-config11/lua/plugins/namu.nvim.lua

22 lines
788 B
Lua
Raw Normal View History

2025-03-27 08:18:20 +00:00
return {
"bassamsdata/namu.nvim",
opts = {
-- Enable the modules you want
namu_symbols = {
enable = true,
options = {}, -- here you can configure namu
},
-- Optional: Enable other modules if needed
ui_select = { enable = false }, -- vim.ui.select() wrapper
colorscheme = {
enable = false,
options = {
-- NOTE: if you activate persist, then please remove any vim.cmd("colorscheme ...") in your config, no needed anymore
persist = true, -- very efficient mechanism to Remember selected colorscheme
write_shada = false, -- If you open multiple nvim instances, then probably you need to enable this
},
},
},
2025-03-27 08:18:20 +00:00
}