Finish lazy.nvim migration

This commit is contained in:
Christian Nieves
2023-06-08 17:16:45 -05:00
parent 648ef29b69
commit 505abba0c2
10 changed files with 68 additions and 71 deletions

View File

@ -14,6 +14,8 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
package.path = package.path .. ';' .. vim.env.HOME .. "/.vim/lua/?.lua"
require("lazy").setup("plugins")
-- CiderLSP
@ -23,5 +25,3 @@ vim.opt.shortmess:append("c")
vim.opt.spell = true
vim.opt.spelllang = { 'en_us' }
require("config.imp")