From a711c9f633d37e827e07f54bd8edf0740b344aac Mon Sep 17 00:00:00 2001 From: Marcelo Jacobus Date: Tue, 5 Aug 2025 09:47:53 -0300 Subject: [PATCH] Add colorscheme picker --- lua/plugins/appearance.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua/plugins/appearance.lua 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 + }, +}