mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
14 lines
212 B
Lua
14 lines
212 B
Lua
return {
|
|
recommended = function()
|
|
return LazyVim.extras.wants({
|
|
ft = "toml",
|
|
root = "*.toml",
|
|
})
|
|
end,
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
taplo = {},
|
|
},
|
|
},
|
|
}
|