figured out html stuff
This commit is contained in:
parent
e82a5f92bf
commit
a5968ab027
|
@ -143,7 +143,8 @@ return { -- LSP Configuration & Plugins
|
|||
-- - capabilities (table): Override fields in capabilities. Can be used to disable certain LSP features.
|
||||
-- - settings (table): Override the default settings passed when initializing the server.
|
||||
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
|
||||
local servers = {
|
||||
local servers =
|
||||
{
|
||||
clangd = {
|
||||
cmd = {
|
||||
'clangd',
|
||||
|
@ -155,6 +156,7 @@ return { -- LSP Configuration & Plugins
|
|||
pyright = {},
|
||||
deno = {},
|
||||
ruff = {},
|
||||
|
||||
-- rust_analyzer = {},
|
||||
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
||||
--
|
||||
|
@ -169,6 +171,7 @@ return { -- LSP Configuration & Plugins
|
|||
},
|
||||
},
|
||||
},
|
||||
|
||||
--
|
||||
|
||||
lua_ls = {
|
||||
|
@ -185,8 +188,7 @@ return { -- LSP Configuration & Plugins
|
|||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
},
|
||||
-- Ensure the servers and tools above are installed
|
||||
-- To check the current status of installed tools and/or manually install
|
||||
-- other tools, you can run
|
||||
|
|
|
@ -11,7 +11,7 @@ return {
|
|||
-- c = { 'cppcheck' },
|
||||
javascript = { 'eslint' },
|
||||
css = { 'stylelint' },
|
||||
html = { 'tidy' },
|
||||
html = { 'djlint' },
|
||||
}
|
||||
|
||||
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
||||
|
|
Loading…
Reference in New Issue