mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
9 lines
332 B
Lua
9 lines
332 B
Lua
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
|
|
},
|
|
}
|