diff --git a/lazy-lock.json b/lazy-lock.json index e44360e..eeac529 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -3,12 +3,12 @@ "friendly-snippets": { "branch": "main", "commit": "572f5660cf05f8cd8834e096d7b4c921ba18e175" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "mini.icons": { "branch": "main", "commit": "f9a177c11daa7829389b7b6eaaec8b8a5c47052d" }, - "mini.nvim": { "branch": "main", "commit": "48b924e4f3b37f62246873d237a4a89704d88948" }, - "nvim-lspconfig": { "branch": "master", "commit": "d9879110d0422a566fa01d732556f4d5515e1738" }, + "mini.nvim": { "branch": "main", "commit": "d12b7c1b4dccc5245a3d2b7bc73da6dd910af2c0" }, + "nvim-lspconfig": { "branch": "master", "commit": "d89f4891f0720cd2598e4bdd60010d8784b2ac8a" }, "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, "oil.nvim": { "branch": "master", "commit": "07f80ad645895af849a597d1cac897059d89b686" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, - "seoul256.nvim": { "branch": "master", "commit": "726f88a77c02418aa5cb72a81c85bfb5ba2704d9" }, + "snacks.nvim": { "branch": "main", "commit": "da230e3ca8146da4b73752daaf0a1d07d343c12d" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "1f08ed60cafc8f6168b72b80be2b2ea149813e55" }, "telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" } } diff --git a/lua/plugins/nvim-lsp.lua b/lua/plugins/nvim-lsp.lua index 43ba6fa..c2bf40a 100644 --- a/lua/plugins/nvim-lsp.lua +++ b/lua/plugins/nvim-lsp.lua @@ -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, + } } diff --git a/lua/plugins/snacks.lua b/lua/plugins/snacks.lua new file mode 100644 index 0000000..fe4d892 --- /dev/null +++ b/lua/plugins/snacks.lua @@ -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 + } + } + }, +}