[LSP] Add extra comments
This commit is contained in:
parent
1d9cbabc87
commit
52bfe295cb
@ -24,11 +24,17 @@ return {
|
|||||||
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" })
|
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" })
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- ┌ ┐
|
||||||
|
-- │ Bash │
|
||||||
|
-- └ ┘
|
||||||
lspconfig.bashls.setup({
|
lspconfig.bashls.setup({
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- ┌ ┐
|
||||||
|
-- │ C, Cpp, objc │
|
||||||
|
-- └ ┘
|
||||||
lspconfig.clangd.setup({
|
lspconfig.clangd.setup({
|
||||||
cmd = {
|
cmd = {
|
||||||
"clangd",
|
"clangd",
|
||||||
@ -40,6 +46,9 @@ return {
|
|||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- ┌ ┐
|
||||||
|
-- │ HTML, CSS, JSON │
|
||||||
|
-- └ ┘
|
||||||
lspconfig.cssls.setup({
|
lspconfig.cssls.setup({
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
@ -78,6 +87,9 @@ return {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- ┌ ┐
|
||||||
|
-- │ Markdown │
|
||||||
|
-- └ ┘
|
||||||
lspconfig.marksman.setup({
|
lspconfig.marksman.setup({
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user