diff options
| author | kylo252 <[email protected]> | 2022-01-03 15:49:07 +0100 | 
|---|---|---|
| committer | kylo252 <[email protected]> | 2022-01-03 15:49:07 +0100 | 
| commit | e5aa8be8ce54097e4a34220cb2aad114e70f209b (patch) | |
| tree | 15e0a3017358b15a0656b6d1f98d2638ae572095 /lua/lvim/config | |
| parent | 427ad868d404a254dcbc7d3950946dae0cf205de (diff) | |
| parent | 21b41688ee8c5056ffbb2b07df141ce1ccb4b213 (diff) | |
Merge branch 'rolling'
Diffstat (limited to 'lua/lvim/config')
| -rw-r--r-- | lua/lvim/config/init.lua | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/lua/lvim/config/init.lua b/lua/lvim/config/init.lua index 9b6d36f0..145173b1 100644 --- a/lua/lvim/config/init.lua +++ b/lua/lvim/config/init.lua @@ -66,6 +66,11 @@ local function handle_deprecated_settings()        deprecation_notice(string.format("lvim.lang.%s", lang))      end    end + +  -- lvim.lsp.popup_border +  if vim.tbl_contains(vim.tbl_keys(lvim.lsp), "popup_border") then +    deprecation_notice "lvim.lsp.popup_border" +  end  end  --- Override the configuration with a user provided one @@ -97,9 +102,7 @@ end  --- Override the configuration with a user provided one  -- @param config_path The path to the configuration overrides  function M:reload() -  package.loaded["lvim.utils.hooks"] = nil -  local _, hooks = pcall(require, "lvim.utils.hooks") -  hooks.run_pre_reload() +  require_clean("lvim.utils.hooks").run_pre_reload()    M:init()    M:load() @@ -110,7 +113,7 @@ function M:reload()    local plugin_loader = require "lvim.plugin-loader"    plugin_loader.load { plugins, lvim.plugins } -  hooks.run_post_reload() +  require_clean("lvim.utils.hooks").run_post_reload()  end  return M | 
