fix : typo in default_config.lua

This commit is contained in:
siduck76 2021-09-24 19:12:44 +05:30
parent 595be18680
commit a820c3cafd
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ M.plugins = {
servers = {} -- eg: "html" servers = {} -- eg: "html"
}, },
nvimtree = { nvimtree = {
disable_git = 1 enable_git = 0
}, },
statusline = { -- statusline related options statusline = { -- statusline related options
-- these are filetypes, not pattern matched -- these are filetypes, not pattern matched

View File

@ -1,5 +1,5 @@
local present, tree_c = pcall(require, "nvim-tree.config") local present, tree_c = pcall(require, "nvim-tree.config")
local git_status = require("core.utils").load_config().plugins.options.nvimtree.disable_git local git_status = require("core.utils").load_config().plugins.options.nvimtree.enable_git
if not present then if not present then
return return