.config/nvim/init.lua

Tue, 14 Feb 2023 02:54:12 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Tue, 14 Feb 2023 02:54:12 -0600
changeset 1021
f0756bba5d2f
parent 1019
7e42fd320166
child 1022
d509e282ae10
permissions
-rw-r--r--

Add some plugin config

require("config.options")
require("lazy-bootstrap")
require("config.maps")
require("config.lsp")

local g = vim.g

-- >> Builtin
g.netrw_altfile = 1
g.netrw_use_errorwindow = 0

-- >> Undotree
g.undotree_SplitWidth = 45
g.undotree_SetFocusWhenToggle = 1
g.undotree_ShortIndicators = 1
g.undotree_DiffCommand = "diff -dp -U 1"

-- >> Tagbar
g.tagbar_autoclose = 1
g.tagbar_autofocus = 1
g.tagbar_compact = 1
g.tagbar_width = 30

mercurial