blob: 142374c0e35601b997a5df92c3534be37bf6ae62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
return {
{
'gentoo/gentoo-syntax',
lazy = false,
config = function()
vim.api.nvim_create_autocmd('LspAttach', {
callback = function(args)
if vim.bo.filetype == 'ebuild' then
vim.lsp.stop_client(vim.lsp.get_clients({ bufnr = args.bufnr }))
end
end,
})
end,
},
}
|