-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
49 lines (45 loc) · 1.44 KB
/
init.lua
File metadata and controls
49 lines (45 loc) · 1.44 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
39
40
41
42
43
44
45
46
47
48
49
-- ############################################################################
--
-- ▄███████▄ ▄█ ▄████████
-- ██▀ ▄██ ███ ███ ███
-- ▄███▀ ███▌ ███ █▀
-- ▀█▀▄███▀▄▄ ███▌ ▄███▄▄▄
-- ▄███▀ ▀ ███▌ ▀▀███▀▀▀
-- ▄███▀ ███ ███ █▄
-- ███▄ ▄█ ███ ███ ███
-- ▀████████▀ █▀ ██████████
--
-- Github: https://github.com/zie87/nvim_config
--
-- ############################################################################
-- disable netrw at the very start of your init.lua (strongly advised)
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- set termguicolors to enable highlight groups
vim.opt.termguicolors = true
vim.g.mapleader = [[-]]
vim.g.maplocalleader = [[,]]
-- load basic configs
require "zie/performance"
require "zie/base_cfg"
require "zie/keymap"
-- load plugins
require "zie/plugins"
-- load file management
require "zie/fb"
-- language config
require "zie/lsp"
require "zie/dap"
require "zie/refactoring"
-- session handling
require "zie/session"
-- telescope
require "zie/telescope"
-- terminal
require "zie/terminal"
-- neorg
-- require "zie/neorg"
-- general utils
require "zie/utils"
-- load theme
require "zie/theme"