fix(nvim): make sure we start the lsp for every buffer

This commit is contained in:
matt1432 2025-05-17 07:55:59 -04:00
parent 7f2d610add
commit ad30b3eda7
12 changed files with 15 additions and 15 deletions
homeManagerModules/neovim/langs/csharp

View file

@ -61,7 +61,7 @@ in {
});
end;
vim.api.nvim_create_autocmd('FileType', {
vim.api.nvim_create_autocmd({ 'FileType', 'BufEnter' }, {
pattern = { 'cs' },
callback = function()