2 Commits
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -23,6 +23,7 @@ The configuration is strictly modular:
- `lua/options.lua`: Global Vim settings and non-plugin autocommands. - `lua/options.lua`: Global Vim settings and non-plugin autocommands.
- `lua/plugins.lua`: Plugin declarations and detailed registry-based configurations. - `lua/plugins.lua`: Plugin declarations and detailed registry-based configurations.
- `lua/keymaps.lua`: Centralized user-facing keybindings. - `lua/keymaps.lua`: Centralized user-facing keybindings.
- `lua/const.lua`: Stores constant values for reference in the configuration.
## 🚀 Getting Started ## 🚀 Getting Started
+1 -1
View File
@@ -1,6 +1,6 @@
--[[ --[[
Data Storage Constants
--]] --]]
+1 -1
View File
@@ -44,7 +44,7 @@ Config.plugins.snacks = {
{ section = "keys", gap = 1, padding = 1 }, { section = "keys", gap = 1, padding = 1 },
}, },
preset = { preset = {
header = require("data").header, header = require("const").header,
}, },
}, },
explorer = { enabled = true }, explorer = { enabled = true },