63 lines
1.5 KiB
Lua
63 lines
1.5 KiB
Lua
return {
|
|
-- themes
|
|
{ "ntk148v/habamax.nvim", dependencies={ "rktjmp/lush.nvim" } },
|
|
{ "catppuccin/nvim", name = "catppuccin", },
|
|
-- { "tamelion/neovim-molokai" },
|
|
-- end themes
|
|
"folke/which-key.nvim",
|
|
"Pocco81/auto-save.nvim",
|
|
"neovim/nvim-lspconfig",
|
|
{
|
|
"L3MON4D3/LuaSnip",
|
|
version = "v2.*",
|
|
},
|
|
{
|
|
"mason-org/mason.nvim",
|
|
opts={
|
|
|
|
ui = {
|
|
icons = {
|
|
package_installed = "✓",
|
|
package_pending = "➜",
|
|
package_uninstalled = "✗"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"RRethy/vim-illuminate",
|
|
"stevearc/conform.nvim",
|
|
"norcalli/nvim-colorizer.lua",
|
|
{
|
|
"gelguy/wilder.nvim",
|
|
opts = function()
|
|
local wilder = require("wilder")
|
|
wilder.set_option("renderer", wilder.popupmenu_renderer({
|
|
pumblend = 20,
|
|
}))
|
|
return {
|
|
modes = { ':', '/', '?' }
|
|
}
|
|
end
|
|
},
|
|
{
|
|
"zaldih/themery.nvim",
|
|
lazy = false,
|
|
config = function()
|
|
require("themery").setup({
|
|
themes = vim.fn.getcompletion("", "color"),
|
|
livePreview = true,
|
|
})
|
|
end
|
|
},
|
|
{ "junegunn/vim-easy-align" },
|
|
{
|
|
'LhKipp/nvim-nu',
|
|
build = ':TSInstall nu',
|
|
opts = {},
|
|
config = function()
|
|
-- vim.g.nu_enable_treesitter = false
|
|
-- vim.g.nu_enable_lsp = false
|
|
end
|
|
},
|
|
{ "nvimtools/none-ls.nvim" },
|
|
}
|