fix: correct runtimepath order (#4124)

This commit is contained in:
LostNeophyte 2023-05-07 10:36:42 +02:00 committed by GitHub
parent 55e7fdb9d1
commit 6d3f8b2183
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 3 deletions

View file

@ -5,7 +5,7 @@ local base_dir = vim.env.LUNARVIM_BASE_DIR
end)()
if not vim.tbl_contains(vim.opt.rtp:get(), base_dir) then
vim.opt.rtp:append(base_dir)
vim.opt.rtp:prepend(base_dir)
end
require("lvim.bootstrap"):init(base_dir)