summaryrefslogtreecommitdiff
path: root/utils/installer/config_win.example.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-07-31 14:28:43 +0200
committerkylo252 <[email protected]>2022-07-31 14:28:43 +0200
commit6fbefdacd35f03b8146490613c54e7865d06a77f (patch)
tree70e378c86c411b4c959e7f04851263fc96ad752e /utils/installer/config_win.example.lua
parentb04aefbb79670b115f4f363906d6d294b3d0a2a3 (diff)
parentdec21bbab6cf9102e236806e20273d08f32f8716 (diff)
Merge branch 'rolling'
Diffstat (limited to 'utils/installer/config_win.example.lua')
-rw-r--r--utils/installer/config_win.example.lua16
1 files changed, 15 insertions, 1 deletions
diff --git a/utils/installer/config_win.example.lua b/utils/installer/config_win.example.lua
index 011ca0da..cb110664 100644
--- a/utils/installer/config_win.example.lua
+++ b/utils/installer/config_win.example.lua
@@ -99,6 +99,20 @@ lvim.builtin.treesitter.highlight.enabled = true
-- generic LSP settings
+-- -- make sure server will always be installed even if the server is in skipped_servers list
+-- lvim.lsp.installer.setup.ensure_installed = {
+-- "sumeko_lua",
+-- "jsonls",
+-- }
+-- -- change UI setting of `LspInstallInfo`
+-- -- see <https://github.com/williamboman/nvim-lsp-installer#default-configuration>
+-- lvim.lsp.installer.setup.ui.check_outdated_servers_on_open = false
+-- lvim.lsp.installer.setup.ui.border = "rounded"
+-- lvim.lsp.installer.setup.ui.keymaps = {
+-- uninstall_server = "d",
+-- toggle_server_expand = "o",
+-- }
+
-- ---@usage disable automatic installation of servers
-- lvim.lsp.automatic_servers_installation = false
@@ -109,7 +123,7 @@ lvim.builtin.treesitter.highlight.enabled = true
-- require("lvim.lsp.manager").setup("pyright", opts)
-- ---remove a server from the skipped list, e.g. eslint, or emmet_ls. !!Requires `:LvimCacheReset` to take effect!!
--- ---`:LvimInfo` lists which server(s) are skiipped for the current filetype
+-- ---`:LvimInfo` lists which server(s) are skipped for the current filetype
-- vim.tbl_map(function(server)
-- return server ~= "emmet_ls"
-- end, lvim.lsp.automatic_configuration.skipped_servers)