From 5c0100234414c679ee4d6b09038916886ab93cec Mon Sep 17 00:00:00 2001 From: oli Date: Thu, 8 May 2025 22:34:31 +0200 Subject: [PATCH] Update lua/plugins/lsp.lua --- lua/plugins/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index ab0c78b..bfb752d 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -69,7 +69,7 @@ return { local lsp_group = vim.api.nvim_create_augroup('UserLspAttach', { clear = true }) vim.api.nvim_create_autocmd('LspAttach', { group = lsp_group, - desc = 'Set buffer‑local keymaps and options after an LSP client attaches', + desc = 'Set buffer-local keymaps and options after an LSP client attaches', callback = function(args) local bufnr = args.buf local client = vim.lsp.get_client_by_id(args.data.client_id)