This commit is contained in:
Javier Feliz 2024-12-22 16:40:25 -05:00
parent dbf15f9fb1
commit 278487b9c5
2 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,9 @@ I want it to be easy to look through and understand.
The files are organized as such inside the `lua` folder:
`core/`: Any component of the config that I absolutely must have in any system for the rest of time.
`core/plugins`: Necessarry plugins such as mason, tree sitter and such.
`optional`: Anything that I could remove and live without.
## Installation

View File

@ -1,6 +1,5 @@
-- Import vim options and such
require 'core.options'
require 'core.keymaps'
require 'core.autocommands'
-- Bootstrap lazy.nvim
@ -88,3 +87,6 @@ require('lazy').setup({
},
},
})
-- Import keymaps after plugins so we don't get
-- any "Module not found" errors
require 'core.keymaps'