mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Move non-plugin settings to core/
This commit is contained in:
parent
768764a899
commit
9c8191bfa7
|
@ -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"
|
||||
|
|
7
home/.config/nvim/lua/core/init.lua
Normal file
7
home/.config/nvim/lua/core/init.lua
Normal 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"
|
Loading…
Reference in a new issue