- added nixd lsp

This commit is contained in:
2025-08-20 07:19:26 +02:00
parent 89e1542efb
commit 8ce6221161
3 changed files with 8 additions and 2 deletions

View File

@@ -13,7 +13,6 @@
"nvim-dap-ui": { "branch": "master", "commit": "cf91d5e2d07c72903d052f5207511bf7ecdb7122" },
"nvim-lspconfig": { "branch": "master", "commit": "63a38440989c58e1f100373ab603fd24665bdc9a" },
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
"nvim-rpgle": { "branch": "master", "commit": "8feaf44adf915c1df255920268beec710188df43" },
"nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
"nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" },
"nvim-web-devicons": { "branch": "master", "commit": "3362099de3368aa620a8105b19ed04c2053e38c0" },

View File

@@ -20,7 +20,7 @@ require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins" },
"https://git.erik.mertens.digital/erik/nvim-rpgle.git"
-- "https://git.erik.mertens.digital/erik/nvim-rpgle.git"
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.

View File

@@ -165,6 +165,13 @@ return { -- LSP Configuration & Plugins
vim.lsp.config('vtsls', vtsls_config)
vim.lsp.config('vue_ls', vue_ls_config)
vim.lsp.enable({ 'vtsls', 'vue_ls' })
vim.lsp.enable('nixd', {
settings = {
nixpkgs = {
expr = "import <nixpkgs> { }"
}
}
})
vim.lsp.config("ltex_plus", {
settings = {