-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.lua
More file actions
30 lines (20 loc) · 996 Bytes
/
init.lua
File metadata and controls
30 lines (20 loc) · 996 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
-- ============================================================================
-- Neovim Configuration Entry Point
-- ============================================================================
-- Set <space> as the leader key
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
vim.g.mapleader = " "
vim.g.maplocalleader = " "
-- ============================================================================
-- Load Configuration Modules (Order Matters!)
-- ============================================================================
-- 1. Core: Bootstraps lazy.nvim, loads all plugins, and sets up core functionality
require("radia.core")
-- 2. Keymaps: Define keybindings (loaded after plugins are available)
require("radia.keymaps")
-- 3. Themes: Apply colorscheme (loaded after plugins are available)
require("radia.themes")
-- 4. Neovide: GUI-specific settings
require("radia.neovide")
-- 5. Last: Final setup and autocmds
require("radia.last")