Remove small mistake

This commit is contained in:
David Holland 2023-09-27 08:52:22 +02:00
parent db90c5e6a0
commit 4a1df4edcd
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
local nvchad = vim.api.nvim_get_runtime_file("NvChad", false)[1]
if nvchad then
package.path = nvchad .. ';' .. nvchad .. '/lua/?/init.lua;' .. nvchad .. '/lua/?.lua;' .. package.path
package.path = nvchad .. '/lua/?/init.lua;' .. nvchad .. '/lua/?.lua;' .. package.path
dofile(nvchad .. "/init.lua")
end