diff options
author | kylo252 <[email protected]> | 2022-09-04 16:20:14 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-09-04 16:20:14 +0200 |
commit | 50494d62a99b1d0767f330f66f2df0458d2c5da0 (patch) | |
tree | f76758ef247fcab5f9c8b7c565560792acaf445d /utils | |
parent | b3bceadfddce9843850cb375edb9d470ca75b61b (diff) | |
parent | 256e4b8e70994761957b84cb24151fcdfcaa74e6 (diff) |
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'utils')
-rw-r--r-- | utils/installer/config.example.lua | 2 | ||||
-rw-r--r-- | utils/installer/config_win.example.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/installer/config.example.lua b/utils/installer/config.example.lua index 65662794..26a50edc 100644 --- a/utils/installer/config.example.lua +++ b/utils/installer/config.example.lua @@ -111,7 +111,7 @@ lvim.builtin.treesitter.highlight.enabled = true -- ---remove a server from the skipped list, e.g. eslint, or emmet_ls. !!Requires `:LvimCacheReset` to take effect!! -- ---`:LvimInfo` lists which server(s) are skipped for the current filetype --- vim.tbl_map(function(server) +-- lvim.lsp.automatic_configuration.skipped_servers = vim.tbl_filter(function(server) -- return server ~= "emmet_ls" -- end, lvim.lsp.automatic_configuration.skipped_servers) diff --git a/utils/installer/config_win.example.lua b/utils/installer/config_win.example.lua index 6e9a1ba0..872e6270 100644 --- a/utils/installer/config_win.example.lua +++ b/utils/installer/config_win.example.lua @@ -126,7 +126,7 @@ lvim.builtin.treesitter.highlight.enabled = true -- ---remove a server from the skipped list, e.g. eslint, or emmet_ls. !!Requires `:LvimCacheReset` to take effect!! -- ---`:LvimInfo` lists which server(s) are skipped for the current filetype --- vim.tbl_map(function(server) +-- lvim.lsp.automatic_configuration.skipped_servers = vim.tbl_filter(function(server) -- return server ~= "emmet_ls" -- end, lvim.lsp.automatic_configuration.skipped_servers) |