diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-08-23 12:29:30 +0100 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2023-08-23 14:25:36 +0100 |
commit | 32e69bd3971ce864b22d73f3a57cee03727f0b86 (patch) | |
tree | d32275b609ac8e4d24b2c3cf23441379f8840c63 | |
parent | 08fa71fd274530be23b6ae6b10222afee0b57522 (diff) | |
download | rneovim-32e69bd3971ce864b22d73f3a57cee03727f0b86.tar.gz rneovim-32e69bd3971ce864b22d73f3a57cee03727f0b86.tar.bz2 rneovim-32e69bd3971ce864b22d73f3a57cee03727f0b86.zip |
fix(luarc.json): ignore test directory to save memory
Cuts memory usage on startup from 600mb -> 200mb
-rw-r--r-- | .luarc.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.luarc.json b/.luarc.json index 12696131aa..5a014a26ea 100644 --- a/.luarc.json +++ b/.luarc.json @@ -9,6 +9,9 @@ "${3rd}/busted/library", "${3rd}/luv/library" ], + "ignoreDir": [ + "test" + ], "checkThirdParty": false }, "diagnostics": { |