LunarVim/lua/core/nvimtree.lua
devtoi d85584d09f
[Refactor/Bugfix] move on_config_done callbacks to relevant setup() (#1175)
* Make autopairs config consistent with others

* Fix two typos for autopairs

* Remove extranous autopairs code. Return on setup

* Remove extranous else for autopairs completion confirmation

* Move on_config_done callbacks to setup functions.

* Add on_config_done completion for builtins lacking a config function

* enables galaxyline callbacks to work properly

* Add modules for more builtins

* Finish streamline of config function in plugin setup

* Fix double use of which_key/wk

* Fix erroneous remove of functionality in autopairs completion

* consistency fixes

* Work around telescope not found at config time

* Match plugin definition of project and lualine with others

* fix: restore config callback syntax

Co-authored-by: Johan Melin <johan.melin@paradoxinteractive.com>
Co-authored-by: rebuilt <memoryman51@hotmail.com>
Co-authored-by: Luc Sinet <luc.sinet@gmail.com>
Co-authored-by: kylo252 <59826753+kylo252@users.noreply.github.com>
2021-08-22 20:03:19 +02:00

119 lines
2.8 KiB
Lua

local M = {}
local Log = require "core.log"
function M.config()
lvim.builtin.nvimtree = {
active = true,
on_config_done = nil,
side = "left",
width = 30,
show_icons = {
git = 1,
folders = 1,
files = 1,
folder_arrows = 1,
tree_width = 30,
},
ignore = { ".git", "node_modules", ".cache" },
auto_open = 1,
auto_close = 1,
quit_on_open = 0,
follow = 1,
hide_dotfiles = 1,
git_hl = 1,
root_folder_modifier = ":t",
tab_open = 0,
allow_resize = 1,
lsp_diagnostics = 1,
auto_ignore_ft = { "startify", "dashboard" },
icons = {
default = "",
symlink = "",
git = {
unstaged = "",
staged = "S",
unmerged = "",
renamed = "",
deleted = "",
untracked = "U",
ignored = "",
},
folder = {
default = "",
open = "",
empty = "",
empty_open = "",
symlink = "",
},
},
}
end
function M.setup()
local status_ok, nvim_tree_config = pcall(require, "nvim-tree.config")
if not status_ok then
Log:get_default().error "Failed to load nvim-tree.config"
return
end
local g = vim.g
for opt, val in pairs(lvim.builtin.nvimtree) do
g["nvim_tree_" .. opt] = val
end
-- Implicitly update nvim-tree when project module is active
if lvim.builtin.project.active then
vim.g.nvim_tree_update_cwd = 1
vim.g.nvim_tree_respect_buf_cwd = 1
end
local tree_cb = nvim_tree_config.nvim_tree_callback
if not g.nvim_tree_bindings then
g.nvim_tree_bindings = {
{ key = { "l", "<CR>", "o" }, cb = tree_cb "edit" },
{ key = "h", cb = tree_cb "close_node" },
{ key = "v", cb = tree_cb "vsplit" },
}
end
lvim.builtin.which_key.mappings["e"] = { "<cmd>NvimTreeToggle<CR>", "Explorer" }
local tree_view = require "nvim-tree.view"
-- Add nvim_tree open callback
local open = tree_view.open
tree_view.open = function()
M.on_open()
open()
end
vim.cmd "au WinClosed * lua require('core.nvimtree').on_close()"
if lvim.builtin.nvimtree.on_config_done then
lvim.builtin.nvimtree.on_config_done(nvim_tree_config)
end
end
function M.on_open()
if package.loaded["bufferline.state"] and lvim.builtin.nvimtree.side == "left" then
require("bufferline.state").set_offset(lvim.builtin.nvimtree.width + 1, "")
end
end
function M.on_close()
local buf = tonumber(vim.fn.expand "<abuf>")
local ft = vim.api.nvim_buf_get_option(buf, "filetype")
if ft == "NvimTree" and package.loaded["bufferline.state"] then
require("bufferline.state").set_offset(0)
end
end
function M.change_tree_dir(dir)
local lib_status_ok, lib = pcall(require, "nvim-tree.lib")
if lib_status_ok then
lib.change_dir(dir)
end
end
return M