From 57fcdd272fe41f8d800de112a537e2adf2c60d57 Mon Sep 17 00:00:00 2001 From: dlond Date: Wed, 21 May 2025 05:05:02 +1200 Subject: [PATCH] adding lsp server options pt 3 --- lua/custom/plugins/lsp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/custom/plugins/lsp.lua b/lua/custom/plugins/lsp.lua index cd764bf5..497285dc 100644 --- a/lua/custom/plugins/lsp.lua +++ b/lua/custom/plugins/lsp.lua @@ -19,6 +19,7 @@ return { -- It sets up the LSP servers. -- Load Nix-provided paths from the generated Lua file + package.loaded['custom.nix_paths'] = nil local nix_paths_status, nix_paths = pcall(require, 'custom.nix_paths') if not nix_paths_status then vim.notify('Error loading custom.nix_paths: ' .. (nix_paths or 'Unknown error'), vim.log.levels.ERROR)