diff options
author | Chase Colman <[email protected]> | 2021-09-12 14:15:29 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-12 08:15:29 +0200 |
commit | ad86b1920426577ca2d0e6d56c309a190455c14f (patch) | |
tree | 2b1e41377d2ed298a3dcb01c0cd1f73e30e44b3c /init.lua | |
parent | 7a53fc63e083c0c48d8de361d82736f844c3c14a (diff) |
refactor: add explicit setup for impatient (#1529)
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -18,7 +18,10 @@ vim.cmd [[let &packpath = &runtimepath]] -- }}} _G.PLENARY_DEBUG = false -- Plenary destroys cache with this undocumented flag set to true by default -require("impatient").enable_profile() +require("impatient").setup { + path = vim.fn.stdpath "cache" .. "/lvim_cache", + enable_profiling = true, +} local config = require "config" config:init() |