-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.lua
More file actions
27 lines (23 loc) · 911 Bytes
/
Copy pathinit.lua
File metadata and controls
27 lines (23 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--[[
Welcome to the init file of your nexisnv.
This file is the first one loaded when the system starts.
Everything is organized so you can easily find what you're looking for.
Modules:
• System:
Contains all necessary functions to start the main components.
It bootstraps the Package Manager (Lazy) and optimizes the startup speed.
• Core.easyconfig:
Provides easy-to-use configuration options.
Intended for user-specific settings without modifying core files.
• Lazyinit:
Loads all plugins and themes.
Divided into two sections: one for NexisNV and one for the user.
• Core:
User customizations such as keybindings, colors, and options.
I'm glad you're here!
If you have any questions, feel free to reach out on GitHub, contribute, or make suggestions.
]]
require("system.init")
require("core.easyconfig")
require("lazyinit")
require("core.init")