diff options
author | chaeing <[email protected]> | 2021-07-16 23:42:55 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-17 02:42:55 -0400 |
commit | 1f5fd93f807e5fd70f29569dd4160ffbd3c282d6 (patch) | |
tree | 21783d51f21938a4889f228107679e80582f39aa /utils/installer/lv-config.example.lua | |
parent | 18209ed558ce9495d27114684f76ccfa486cbbd4 (diff) |
[Refactor] nvimtree to be configurable (#970)
* Refactor nvimtree to be configurable
* Correct the location of .stylua.toml in Contrib.md
Co-authored-by: Christian Chiarulli <[email protected]>
Diffstat (limited to 'utils/installer/lv-config.example.lua')
-rw-r--r-- | utils/installer/lv-config.example.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/installer/lv-config.example.lua b/utils/installer/lv-config.example.lua index cbc495e8..b08be95a 100644 --- a/utils/installer/lv-config.example.lua +++ b/utils/installer/lv-config.example.lua @@ -14,7 +14,6 @@ O.format_on_save = true O.lint_on_save = true O.completion.autocomplete = true O.colorscheme = "spacegray" -O.auto_close_tree = 0 O.default_options.wrap = true O.default_options.timeoutlen = 100 O.leader_key = " " @@ -25,6 +24,8 @@ O.plugin.dashboard.active = true O.plugin.terminal.active = true O.plugin.zen.active = false O.plugin.zen.window.height = 0.90 +O.plugin.nvimtree.side = "left" +O.plugin.nvimtree.show_icons.git = 0 -- if you don't want all the parsers change this to a table of the ones you want O.treesitter.ensure_installed = "maintained" |