-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
23 lines (20 loc) 路 1.04 KB
/
Copy pathinit.lua
File metadata and controls
23 lines (20 loc) 路 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- =============================================================================
-- Leader Key Configuration
-- =============================================================================
-- Set leader key before loading any plugins or keymaps.
-- Space is a popular choice as it's easy to reach and rarely conflicts
-- with other mappings.
vim.g.mapleader = " "
vim.g.maplocalleader = " "
-- =============================================================================
-- Load Configuration Modules
-- =============================================================================
-- Configuration is split into separate modules for better organization:
-- - config.options: vim.opt settings (line numbers, indentation, etc.)
-- - config.keymaps: Key mappings (window navigation, file operations, etc.)
-- - config.autocmds: Autocommands (file change detection, plugin sync, etc.)
-- - config.lazy: Plugin manager (lazy.nvim) bootstrap and plugin loading
require("config.options")
require("config.keymaps")
require("config.autocmds")
require("config.lazy")