mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
23 lines
521 B
Lua
Executable File
23 lines
521 B
Lua
Executable File
-- Leader needs to be set before loading plugins
|
|
vim.g.mapleader = " "
|
|
vim.g.maplocalleader = " "
|
|
|
|
-- NOTE: Keep settings at the top, otherwise some options don't work well.
|
|
-- mainly have had trouble with not using the settings in an `.editorconfig`
|
|
-- file for projects.
|
|
|
|
-- Common settings
|
|
require("config.settings")
|
|
|
|
-- Auto commands
|
|
require("config.autocmd")
|
|
|
|
-- Plugins
|
|
require("config.lazy")
|
|
|
|
-- Key maps
|
|
require("config.keymaps")
|
|
|
|
-- Theme (must stay after plugins are loaded)
|
|
require("config.theme")
|