Move non-plugin settings to core/

This commit is contained in:
ItsDrike 2021-12-07 22:13:22 +01:00
parent 768764a899
commit 9c8191bfa7
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843
7 changed files with 18 additions and 6 deletions

View file

@ -1,8 +1,13 @@
-- Require additional scripts which contain individual configurations
-- The configuration is scattered across multiple files in the lua/ folder
-- We can require the individual configurations from here
require "options"
require "theme"
require "mappings"
require "abbreviations"
require "autocmd"
-- This loads in the basic nvim configuration that doesn't rely on any
-- plugins. it provides default keymaps, options, theming, autocmds, ...
require "core"
-- This loads packer plugin manager which manages our plugins
-- NOTE: Removing this will NOT disable the plugins, but it will disable
-- automatic packer installation, allowing for the plugins to be deleted
-- manually (from ~/.local/share/nvim/site/pack/packer).
require "plugins"

View file

@ -0,0 +1,7 @@
-- Require additional scripts which contain individual configurations
require "core.options"
require "core.theme"
require "core.mappings"
require "core.abbreviations"
require "core.autocmd"