diff --git a/lua/plugins/appearance.lua b/lua/plugins/appearance.lua new file mode 100644 index 0000000..8d2d67f --- /dev/null +++ b/lua/plugins/appearance.lua @@ -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", "tp", "Themery", { desc = "Theme picker" }) + end + }, +}