mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 05:51:04 +00:00
Add colorscheme picker
This commit is contained in:
parent
8018835401
commit
a711c9f633
1 changed files with 9 additions and 0 deletions
9
lua/plugins/appearance.lua
Normal file
9
lua/plugins/appearance.lua
Normal 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
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue