2025-09-11 10:18:07 -04:00
|
|
|
-- set to true for light mode
|
|
|
|
vim.g.light_mode = true
|
|
|
|
|
2025-09-03 09:05:52 -04:00
|
|
|
-- Neovim configuration
|
|
|
|
-- Modularized structure for better organization
|
2024-02-28 15:09:30 -05:00
|
|
|
|
2025-09-03 09:05:52 -04:00
|
|
|
-- Load core configuration
|
|
|
|
require("config.options")
|
|
|
|
require("config.keymaps")
|
|
|
|
require("config.autocmds")
|
|
|
|
require("config.lazy")
|
2024-02-28 15:09:30 -05:00
|
|
|
|
2025-09-03 09:05:52 -04:00
|
|
|
-- Setup lazy.nvim and load plugins
|
2024-02-28 15:09:30 -05:00
|
|
|
require("lazy").setup({
|
2025-09-03 09:05:52 -04:00
|
|
|
-- Import all plugin configurations
|
|
|
|
{ import = "plugins" },
|
2024-02-28 15:09:30 -05:00
|
|
|
})
|
2024-11-11 19:27:19 -05:00
|
|
|
|
2025-09-03 09:05:52 -04:00
|
|
|
-- Load additional configuration
|
2024-11-11 19:27:19 -05:00
|
|
|
require("colorizer").setup()
|
2025-09-11 10:18:07 -04:00
|
|
|
require("config.formatting")
|