From 6ad065e582d778792de3beb8d69beeda93f5832c Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Mon, 20 Oct 2025 17:13:15 +0200 Subject: [PATCH] feat: setup nvim-lspconfig. --- lazy-lock.json | 1 + lua/plugins/lsp.lua | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 lua/plugins/lsp.lua diff --git a/lazy-lock.json b/lazy-lock.json index 7079b38..44ff11f 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -1,5 +1,6 @@ { "gruvbox.nvim": { "branch": "main", "commit": "5e0a460d8e0f7f669c158dedd5f9ae2bcac31437" }, "lazy.nvim": { "branch": "main", "commit": "1ea3c4085785f460fb0e46d2fe1ee895f5f9e7c1" }, + "nvim-lspconfig": { "branch": "master", "commit": "ac98db2f9f06a56498ec890a96928774eae412c3" }, "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" } } diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua new file mode 100644 index 0000000..081a78c --- /dev/null +++ b/lua/plugins/lsp.lua @@ -0,0 +1,5 @@ +return { + { + "neovim/nvim-lspconfig", + }, +}