Fix: correct variables inside comments

Co-authored-by: Rory Hendrickson <35480205+roryhen@users.noreply.github.com>
This commit is contained in:
Umut Önder 2025-04-30 17:01:57 +02:00 committed by GitHub
parent 531073d8b2
commit 81c5210cb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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
--