diff --git a/init.lua b/init.lua index 3b2ab23..0e4285b 100644 --- a/init.lua +++ b/init.lua @@ -1,20 +1,20 @@ -- 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' if not (vim.uv or vim.loop).fs_stat(lazy_path) then - vim.fn.system({ - 'git', - 'clone', - '--filter=blob:none', - 'https://github.com/folke/lazy.nvim.git', - '--branch=stable', - lazy_path - }) + vim.fn.system({ + 'git', + 'clone', + '--filter=blob:none', + 'https://github.com/folke/lazy.nvim.git', + '--branch=stable', + lazy_path + }) end vim.opt.rtp:prepend(lazy_path) -require('lazy').setup({ spec = 'plugins' }) +require('lazy').setup({ spec = 'frosty.plugins' }) diff --git a/lua/autocmds.lua b/lua/frosty/autocmds.lua similarity index 100% rename from lua/autocmds.lua rename to lua/frosty/autocmds.lua diff --git a/lua/keymaps.lua b/lua/frosty/keymaps.lua similarity index 100% rename from lua/keymaps.lua rename to lua/frosty/keymaps.lua diff --git a/lua/options.lua b/lua/frosty/options.lua similarity index 100% rename from lua/options.lua rename to lua/frosty/options.lua diff --git a/lua/plugins/init.lua b/lua/frosty/plugins/init.lua similarity index 100% rename from lua/plugins/init.lua rename to lua/frosty/plugins/init.lua