diff options
| author | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2025-10-20 17:13:15 +0200 |
|---|---|---|
| committer | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2025-10-20 17:13:15 +0200 |
| commit | 6ad065e582d778792de3beb8d69beeda93f5832c (patch) | |
| tree | 5c00e31c44dc3f6c983e74e5a1ebb06d3ab3f6ab | |
| parent | 2d8bfe397089df930e1d54914108bb3ceeba0bb4 (diff) | |
| download | nvim-6ad065e582d778792de3beb8d69beeda93f5832c.zip nvim-6ad065e582d778792de3beb8d69beeda93f5832c.tar.gz | |
feat: setup nvim-lspconfig.
| -rw-r--r-- | lazy-lock.json | 1 | ||||
| -rw-r--r-- | lua/plugins/lsp.lua | 5 |
2 files changed, 6 insertions, 0 deletions
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", + }, +} |
