From 81c5210cb57f2127f323d5f6b2dae44bc74374b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Umut=20=C3=96nder?= <93402298+umutondersu@users.noreply.github.com> Date: Wed, 30 Apr 2025 17:01:57 +0200 Subject: [PATCH] Fix: correct variables inside comments Co-authored-by: Rory Hendrickson <35480205+roryhen@users.noreply.github.com> --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 81bc4975..44199aeb 100644 --- a/init.lua +++ b/init.lua @@ -719,13 +719,13 @@ require('lazy').setup({ -- NOTE: Some servers still require the nvim-lspconfig setup until they are updated -- Add this template inside the handler function after initializing config if you encounter issues with any lsp -- - -- if server == 'example_server' or server == 'example_server2' then + -- if server_name == 'example_server' or server_name == 'example_server2' then -- -- This handles overriding only values explicitly passed -- -- by the server configuration above. Useful when disabling -- -- certain features of an LSP (for example, turning off formatting for ts_ls) -- local capabilities = require('blink.cmp').get_lsp_capabilities() -- config.capabilities = vim.tbl_deep_extend('force', {}, capabilities, config.capabilities or {}) - -- require('mason-lspconfig')[server].setup(config) + -- require('mason-lspconfig')[server_name].setup(config) -- return -- end --