add some snacks

This commit is contained in:
Jonathan DeMasi
2025-09-15 21:06:39 -06:00
parent c725e353cd
commit 216e7580b3
3 changed files with 23 additions and 11 deletions

View File

@@ -1,10 +1,9 @@
return {
{
"https://github.com/neovim/nvim-lspconfig",
config = function()
local lspconfig = require("lspconfig")
lspconfig.gopls.setup({})
end,
}
{
"https://github.com/neovim/nvim-lspconfig",
config = function()
local lspconfig = require("lspconfig")
lspconfig.gopls.setup({})
end,
}
}

13
lua/plugins/snacks.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
{
"folke/snacks.nvim",
---@type snacks.Config
opts = {
indent = {
-- your indent configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
}
},
}