diff options
author | Chase Colman <[email protected]> | 2021-10-14 13:03:54 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-14 07:03:54 +0200 |
commit | 4b0ce90a953735b18e0e059d99505519c5d344de (patch) | |
tree | 6863363d3c9ef191419a36a7d67248b740842198 /lua/lvim | |
parent | 9e18c16b2b378792c689591190774786fd5da04c (diff) |
fix(plenary): restore impatient caching for plenary (#1768)
Diffstat (limited to 'lua/lvim')
-rw-r--r-- | lua/lvim/bootstrap.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/bootstrap.lua b/lua/lvim/bootstrap.lua index ab29bca2..b1ecdf1c 100644 --- a/lua/lvim/bootstrap.lua +++ b/lua/lvim/bootstrap.lua @@ -103,6 +103,7 @@ function M:init() -- FIXME: currently unreliable in unit-tests if not os.getenv "LVIM_TEST_ENV" then + _G.PLENARY_DEBUG = false require("lvim.impatient").setup { path = vim.fn.stdpath "cache" .. "/lvim_cache", enable_profiling = true, |