chore: remove unnecesary comment.

This commit is contained in:
CronyAkatsuki 2025-10-22 19:39:46 +02:00
parent a3f243f85d
commit 406895c1f5

View file

@ -14,15 +14,6 @@ vim.lsp.config("*", {
}, },
-- make .git always be a root marker -- make .git always be a root marker
root_markers = { '.git' }, root_markers = { '.git' },
-- setup autocompletion
-- on_attach = function(client, bufnr)
-- vim.lsp.completion.enable(true, client.id, bufnr, {
-- autotrigger = true,
-- convert = function(item)
-- return { abbr = item.label:gsub('%b()', '') }
-- end,
-- })
-- end,
}) })
-- enable specific language servers -- enable specific language servers
@ -30,6 +21,7 @@ vim.lsp.enable({
"nixd", "nixd",
"lua_ls", "lua_ls",
"jsonls", "jsonls",
"marksman",
}) })
-- diagnostic settings -- diagnostic settings