diff options
Diffstat (limited to 'lua/config/impatient.lua')
-rw-r--r-- | lua/config/impatient.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/config/impatient.lua b/lua/config/impatient.lua new file mode 100644 index 0000000..e902108 --- /dev/null +++ b/lua/config/impatient.lua @@ -0,0 +1,8 @@ +-- Speeds up loading of lua modules. + +local status_ok, impatient = pcall(require, "impatient") +if not status_ok then + return +end + +impatient.enable_profile() |