[CHORE] moving things around

This commit is contained in:
Daveanand Mannie
2025-10-22 03:59:38 -04:00
parent fe02946bb2
commit 800e892b6e
10 changed files with 186 additions and 33 deletions

View File

@@ -0,0 +1,11 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
biome = {
cmd = { "biome", "lsp-proxy" },
filetypes = { "javascript", "css", "json" },
},
},
},
}

View File

@@ -0,0 +1,33 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
ruby_lsp = {
mason = false,
cmd = { os.getenv("HOME") .. "/.rbenv/shims/ruby-lsp" },
init_options = {
enabled_features = {
codeActions = true,
codeLens = true,
completion = true,
definition = true,
diagnostics = true,
documentHighlights = true,
documentLink = true,
documentSymbols = true,
foldingRanges = true,
formatting = true,
hover = true,
inlayHint = true,
onTypeFormatting = true,
selectionRanges = true,
semanticHighlighting = true,
signatureHelp = true,
typeHierarchy = true,
workspaceSymbol = true,
},
},
},
},
},
}

View File

@@ -0,0 +1,22 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
lemminx = {
init_options = {
settings = {
xml = {
format = {
enabled = true,
splitAttributes = false,
},
validation = {
noGrammar = "ignore",
},
},
},
},
},
},
},
}

View File

@@ -1,22 +0,0 @@
return {
"neovim/nvim-lspconfig",
opts = {
servers = {
lemminx = {
init_options = {
settings = {
xml = {
format = {
enabled = true,
splitAttributes = false,
},
validation = {
noGrammar = "ignore", -- This is correct
},
}
}
}
}
}
}
}