From 625e3dce4fd2fed24b8c179ed0260002935db33c Mon Sep 17 00:00:00 2001 From: chayleaf Date: Thu, 28 Nov 2024 05:13:52 +0700 Subject: [PATCH] update lspconfig --- home/modules/nvim.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/modules/nvim.nix b/home/modules/nvim.nix index 1affb1d..4f29d02 100644 --- a/home/modules/nvim.nix +++ b/home/modules/nvim.nix @@ -238,7 +238,7 @@ config = ( let lsp = name: builtins.seq # ensure an lsp exists (otherwise lspconfig will still create an empty config for some reason) - (REQ "lspconfig.server_configurations.${name}") + (REQ "lspconfig.configs.${name}") # metatables, son! they harden in response to physical trauma (REQ' (PROP (require "lspconfig") name)); in [ @@ -347,7 +347,7 @@ } // args); in on_attach_rust: [ # (vim.lsp.set_log_level "debug") - # see https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md + # see https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md (lib.mapAttrsToList setupLsp { bashls = { }; clangd = { };