aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/nvim-lsp-installer.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugin/nvim-lsp-installer.vim b/plugin/nvim-lsp-installer.vim
index 6650290f..e6470072 100644
--- a/plugin/nvim-lsp-installer.vim
+++ b/plugin/nvim-lsp-installer.vim
@@ -73,14 +73,3 @@ command! LspInstallLog call s:LspInstallLog()
let &cpo = s:save_cpo
unlet s:save_cpo
-
-
-
-"""
-""" Backward compat for deprecated g:lsp_installer* options. Remove by 2021-12-01-ish.
-"""
-if exists("g:lsp_installer_log_level")
- " legacy global variable option
- call luaeval("require('nvim-lsp-installer').settings { log_level = _A }", g:lsp_installer_log_level)
- lua vim.notify("[Deprecation notice] Providing settings via global variables (g:lsp_installer_log_level) is deprecated. Please refer to https://github.com/williamboman/nvim-lsp-installer#configuration.", vim.log.levels.WARN)
-endif