Skip to content

Commit a0898be

Browse files
author
MysterieDev
committed
update config
1 parent 57ebcec commit a0898be

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

init.lua

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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.

lua/custom/plugins/ale.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ return {
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' },

0 commit comments

Comments
 (0)