mirror of
https://github.com/zoriya/flake.git
synced 2026-06-22 09:53:23 +00:00
62 lines
997 B
Lua
62 lines
997 B
Lua
return {
|
|
{
|
|
"undotree",
|
|
load = function() end,
|
|
lazy = false,
|
|
keys = {
|
|
{ "<leader>u", vim.cmd.UndotreeToggle, desc = "Show undotree" },
|
|
},
|
|
},
|
|
|
|
{
|
|
"which-key.nvim",
|
|
load = function() end,
|
|
lazy = false,
|
|
opts = {
|
|
plugins = { spelling = true },
|
|
},
|
|
after = function(plug)
|
|
require("which-key").setup(plug.opts)
|
|
vim.opt.timeoutlen = 500
|
|
end,
|
|
},
|
|
|
|
{
|
|
"nvim-colorizer.lua",
|
|
load = function() end,
|
|
lazy = false,
|
|
event = "BufReadPre",
|
|
opts = {
|
|
filetypes = {
|
|
'*',
|
|
html = { names = true },
|
|
css = { names = true },
|
|
},
|
|
user_default_options = {
|
|
mode = "virtualtext",
|
|
RGB = false,
|
|
RRGGBB = true,
|
|
names = false,
|
|
RRGGBBAA = true,
|
|
AARRGGBB = true,
|
|
rgb_fn = true,
|
|
hsl_fn = true,
|
|
tailwind = true,
|
|
},
|
|
},
|
|
after = function(plug)
|
|
require("colorizer").setup(plug.opts)
|
|
end
|
|
},
|
|
|
|
{
|
|
"nvim-pqf",
|
|
load = function() end,
|
|
lazy = false,
|
|
ft = "qf",
|
|
after = function()
|
|
require("pqf").setup()
|
|
end,
|
|
},
|
|
}
|