mirror of https://github.com/LazyVim/starter
21 lines
495 B
Lua
21 lines
495 B
Lua
return {
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
inlay_hints = { enabled = false },
|
|
servers = {
|
|
denols = {
|
|
root_dir = require("lspconfig").util.root_pattern("deno.json", "deno.jsonc"),
|
|
single_file_support = false,
|
|
},
|
|
tailwindcss = {
|
|
root_dir = require("lspconfig").util.root_pattern("tailwind.config.js", "tailwind.config.ts"),
|
|
},
|
|
ruby_lsp = {
|
|
init_options = {},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|