more stuff too lazy to seperate

This commit is contained in:
2023-11-24 21:38:31 -05:00
parent ebf9d2d1c4
commit f35b13d669
33 changed files with 488 additions and 246 deletions

View File

@ -8,8 +8,12 @@ c = vim.cmd
vim.loader.enable()
-- main lua files -------------------------------------------------------------
misc = require('core.misc')
require('bootstrap')
require('core.handler')
require('conf')
-- core lua files -------------------------------------------------------------
require('core.conf')
-- call all snippets in the lua/snippets directory ----------------------------
if pcall(require, "luasnip") then
@ -19,6 +23,3 @@ if pcall(require, "luasnip") then
require('snippet.'..file:gsub('%.lua$', ''))
end
end
-- call the config manager ----------------------------------------------------
require('cfgmenu')