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