Add some plugin config

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 1020
b1b644e9825d
child 1022
d509e282ae10

Add some plugin config

.config/nvim/init.lua file | annotate | diff | comparison | revisions
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -2,3 +2,22 @@ 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