diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-06 16:36:23 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-06 16:36:23 +0100 |
| commit | 38639705f1291c892be2146a22d95b8a7d462089 (patch) | |
| tree | eb729dc92b5ad3a5e9a5e5dc880ea3a6e55fbd5d | |
| parent | c32d42d7ea1a0b98f52f140ff446e84e04ec2d61 (diff) | |
add lsp-nvim config to nevim configuration
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix index 394da1e..78edbb7 100644 --- a/modules/home/i3wm/nord-blue/nvim.nix +++ b/modules/home/i3wm/nord-blue/nvim.nix @@ -41,6 +41,7 @@ p.latex p.c ])) + nvim-lspconfig # File Navigation telescope-nvim @@ -123,6 +124,18 @@ }) ------------------------------------------------- + -- LSP + ------------------------------------------------- + local lspconfig = require("lspconfig") + + lspconfig.lua_ls.setup({}) + lspconfig.nil_ls.setup({}) + lspconfig.rust_analyzer.setup({}) + lspconfig.pyright.setup({}) + lspconfig.bashls.setup({}) + lspconfig.texlab.setup({}) + + ------------------------------------------------- -- TELESCOPE ------------------------------------------------- local builtin = require("telescope.builtin") |
