mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-13 15:09:34 +00:00
11 lines
299 B
Lua
11 lines
299 B
Lua
-- 设置 mapleader 必须在加载插件前
|
|
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = "\\"
|
|
|
|
-- 加载基础配置
|
|
require("config.options") -- 基本设置
|
|
require("config.keymaps") -- 键位映射
|
|
require("config.autocmds") -- 自动命令
|
|
|
|
-- 加载插件管理器
|
|
require("config.lazy") |