Fix
This commit is contained in:
parent
dbf15f9fb1
commit
278487b9c5
@ -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
|
||||
|
4
init.lua
4
init.lua
@ -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'
|
||||
|
Loading…
x
Reference in New Issue
Block a user