From 9f74599d9f1c46549bcc85de4fffe75e926bb199 Mon Sep 17 00:00:00 2001 From: orip Date: Tue, 21 Apr 2026 13:10:16 +0300 Subject: [PATCH] Enable vim.loader for faster loading time --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index ffd48e58..e091d3da 100644 --- a/init.lua +++ b/init.lua @@ -84,6 +84,9 @@ I hope you enjoy your Neovim journey, P.S. You can delete this when you're done too. It's your config now! :) --]] +-- Enables faster startup time by caching your compiled Lua modules. +vim.loader.enable() + -- Set as the leader key -- See `:help mapleader` -- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)