initial import

This commit is contained in:
Fábio André Damas 2025-03-27 08:18:20 +00:00
commit f9f53656f7
32 changed files with 1064 additions and 0 deletions

24
lua/plugins/namu.nvim.lua Normal file
View file

@ -0,0 +1,24 @@
return {
{
"bassamsdata/namu.nvim",
config = function()
require("namu").setup({
-- 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
},
},
})
end,
}
}