trying out nix

This commit is contained in:
snarmph 2026-02-18 14:32:37 +01:00
commit 65bd68a260
18 changed files with 1217 additions and 0 deletions

46
lua/plugins/main.lua Normal file
View file

@ -0,0 +1,46 @@
return {
"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",
{
"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" },
{ "sindrets/diffview.nvim" },
}