.config/nvim/init.lua

changeset 1021
f0756bba5d2f
parent 1019
7e42fd320166
child 1022
d509e282ae10
equal deleted inserted replaced
1020:b1b644e9825d 1021:f0756bba5d2f
1 require("config.options") 1 require("config.options")
2 require("lazy-bootstrap") 2 require("lazy-bootstrap")
3 require("config.maps") 3 require("config.maps")
4 require("config.lsp") 4 require("config.lsp")
5
6 local g = vim.g
7
8 -- >> Builtin
9 g.netrw_altfile = 1
10 g.netrw_use_errorwindow = 0
11
12 -- >> Undotree
13 g.undotree_SplitWidth = 45
14 g.undotree_SetFocusWhenToggle = 1
15 g.undotree_ShortIndicators = 1
16 g.undotree_DiffCommand = "diff -dp -U 1"
17
18 -- >> Tagbar
19 g.tagbar_autoclose = 1
20 g.tagbar_autofocus = 1
21 g.tagbar_compact = 1
22 g.tagbar_width = 30
23

mercurial