File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -558,10 +558,16 @@ require('lazy').setup({
558558 -- https://github.com/pmizio/typescript-tools.nvim
559559 --
560560 -- But for many setups, the LSP (`tsserver`) will work just fine
561+ -- npm install -g @vtsls/language-server
561562 vtsls = { refactor_auto_rename = true },
563+ -- neccesary for cssls and html
564+ -- npm i -g vscode-langservers-extracted
562565 cssls = {},
563566 html = {},
567+ -- you have to add: npm i -g @olrtg/emmet-language-server
568+ emmet_language_server = {},
564569 terraformls = {},
570+ groovyls = {},
565571 --
566572
567573 lua_ls = {
@@ -717,7 +723,7 @@ require('lazy').setup({
717723 -- This will auto-import if your LSP supports it.
718724 -- This will expand snippets if the LSP sent a snippet.
719725 [' <C-Enter>' ] = cmp .mapping .confirm { select = true },
720-
726+ [ ' <D-^> ' ] = cmp . mapping . confirm { select = true },
721727 -- Manually trigger a completion from nvim-cmp.
722728 -- Generally you don't need this, because nvim-cmp will display
723729 -- completions whenever it has completion options available.
Original file line number Diff line number Diff line change 33 config = function ()
44 -- Configuration goes here.
55 local g = vim .g
6+ g .ale_javascript_prettier_use_local_config = 1
67 g .ale_fixers = {
78 typescript = { ' prettierd' },
89 html = { ' prettierd' },
You can’t perform that action at this time.
0 commit comments