Files
neovim-config/lua/plugins/lspconfig.lua
Tyler Hallada aa39f326cc Update lazyvim to v14
Removed a bunch of plugins that are no longer needed.
2025-01-10 12:16:07 -05:00

20 lines
496 B
Lua

return {
"neovim/nvim-lspconfig",
opts = {
servers = {
clangd = {
-- removing .proto from the list of filetypes since clangd doesn't seem to be able to parse them
filetypes = { "c", "cpp", "objc", "objcpp", "cuda" },
},
},
-- Disable eslint formatting as it's slow and timing out on big projects
-- taken from
-- https://github.com/LazyVim/LazyVim/pull/4225/files
setup = {
eslint = function()
return
end,
},
},
}