-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
38 lines (32 loc) · 2.33 KB
/
init.lua
File metadata and controls
38 lines (32 loc) · 2.33 KB
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
28
29
30
31
32
33
34
35
36
37
38
------------------------------------------------------------------------------------------------------------------------------
-- => GLOBAL OVERLOADS
------------------------------------------------------------------------------------------------------------------------------
local utils = require("dsych_config.utils")
utils.source_all_additional_files(vim.fn.stdpath("config") .. "/additional/host")
------------------------------------------------------------------------------------------------------------------------------
-- => General
------------------------------------------------------------------------------------------------------------------------------
require("dsych_config.general")
------------------------------------------------------------------------------------------------------------------------------
-- => Custom commands
------------------------------------------------------------------------------------------------------------------------------
require("dsych_config.commands")
------------------------------------------------------------------------------------------------------------------------------
-- => Key maps
------------------------------------------------------------------------------------------------------------------------------
require("dsych_config.mappings")
------------------------------------------------------------------------------------------------------------------------------
-- => Autocommands
------------------------------------------------------------------------------------------------------------------------------
require("dsych_config.autocommands")
------------------------------------------------------------------------------------------------------------------------------
-- => Plugins
------------------------------------------------------------------------------------------------------------------------------
-- everything inside "plugins" directory gets automatically sourced by lazy
require("dsych_config.lazy")
--------------------------------------------------------
-- Additional runtime path and script locations
--------------------------------------------------------
-- source any additional configuration files that i don't want to check in git
utils.source_all_additional_files(vim.fn.stdpath("config") .. "/additional")
vim.opt.runtimepath:append("$HOME/.config/nvim/additional")