You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
317 B
Lua
14 lines
317 B
Lua
4 months ago
|
vim.api.nvim_create_autocmd("LspAttach", {
|
||
|
callback = function(args)
|
||
|
-- this code is run every time we attach an LSP
|
||
|
end,
|
||
|
})
|
||
|
|
||
|
vim.api.nvim_create_autocmd("LspDetach", {
|
||
|
callback = function(args)
|
||
|
-- this code runs every time a buffer detaches from an LSP
|
||
|
end,
|
||
|
})
|
||
|
|
||
|
-- vim.lsp.set_log_level(“DEBUG”)
|