-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
22 lines (19 loc) · 844 Bytes
/
Copy pathinit.lua
File metadata and controls
22 lines (19 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- ============================================================================
-- Neovim Configuration
-- Author: muhbrohim
-- Layout:
-- init.lua -> bootstrap (this file)
-- lua/config/ -> options, keymaps, autocmds, filetypes, commands, lazy
-- lua/plugins/ -> one file per plugin (lazy.nvim specs)
-- ============================================================================
-- Leaders MUST be set before lazy.nvim loads any plugin (keymaps depend on them).
vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- Core, plugin-independent configuration.
require("config.options")
require("config.filetypes")
require("config.autocmds")
require("config.commands")
require("config.keymaps")
-- Plugin manager (bootstraps lazy.nvim, then loads everything in lua/plugins/).
require("config.lazy")