move lua stuff to a custom package

This commit is contained in:
frosty 2024-07-04 16:07:56 -04:00
parent d4547a8bc8
commit 491156025e
5 changed files with 12 additions and 12 deletions

View file

@ -1,7 +1,7 @@
-- Call other files
require('options')
require('keymaps')
require('autocmds')
require('frosty.options')
require('frosty.keymaps')
require('frosty.autocmds')
-- Initialize Lazy
local lazy_path = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
@ -17,4 +17,4 @@ if not (vim.uv or vim.loop).fs_stat(lazy_path) then
end
vim.opt.rtp:prepend(lazy_path)
require('lazy').setup({ spec = 'plugins' })
require('lazy').setup({ spec = 'frosty.plugins' })