-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.lua
32 lines (31 loc) · 1.13 KB
/
config.lua
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
require "pea.utils"
lvim:set {
dev_mode = true,
leader = "space",
format_on_save = true,
lsp = reload "pea.lsp",
keys = reload "pea.keys",
transparent_window = true,
colorscheme = "one_monokai",
plugins = reload "pea.plugins",
options = reload "pea.options",
autocommands = reload "pea.autocommands",
builtin = {
cmp = reload "pea.builtin.cmp",
dap = reload "pea.builtin.dap",
lir = reload "pea.builtin.lir",
alpha = reload "pea.builtin.alpha",
mason = reload "pea.builtin.mason",
lualine = reload "pea.builtin.lualine",
terminal = reload "pea.builtin.terminal",
nvimtree = reload "pea.builtin.nvimtree",
autopairs = reload "pea.builtin.autopairs",
which_key = reload "pea.builtin.which_key",
telescope = reload "pea.builtin.telescope",
treesitter = reload "pea.builtin.treesitter",
illuminate = reload "pea.builtin.illuminate",
bufferline = reload "pea.builtin.bufferline",
indentlines = reload "pea.builtin.indentlines",
breadcrumbs = reload "pea.builtin.breadcrumbs",
},
}