Add colorscheme picker

This commit is contained in:
Marcelo Jacobus 2025-08-05 09:47:53 -03:00
parent 8018835401
commit a711c9f633

View file

@ -0,0 +1,9 @@
return {
{ "zaldih/themery.nvim", lazy = false, config = function()
-- combinando themes starry + base16
local themes = vim.fn.getcompletion("", "color")
require("themery").setup({ themes = themes, livePreview = true })
vim.keymap.set("n", "<leader>tp", "<cmd>Themery<cr>", { desc = "Theme picker" })
end
},
}