2021-12-07 21:13:22 +00:00
|
|
|
-- The configuration is scattered across multiple files in the lua/ folder
|
|
|
|
-- We can require the individual configurations from here
|
2021-12-05 21:33:23 +00:00
|
|
|
|
2021-12-07 21:13:22 +00:00
|
|
|
|
|
|
|
-- 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).
|
2021-11-30 19:22:51 +00:00
|
|
|
require "plugins"
|