Migrate options to setup

This migrates and renamed the following options to `nvim_tree.setup` in accordance to nvim-tree migration guide:

* vim.g.nvim_tree_icons -> moved to setup.renderer.icons.glyphs
* setup.auto_close -> feature has been removed
* setup.update_to_buf_dir -> renamed to hijack_directories
* setup.quit_on_open -> moved to setup.actions.open_file
* setup.git_hl -> renamed to highlight_git and moved to setup.renderer
* setup.disable_window_picker -> renamed to window_picker and moved to setup.actions
* setup.root_folder_modifier -> moved to setup.renderer
* setup.show_icons -> moved to setup.renderer.icons.show; removed tree_width

Migration guide: https://github.com/kyazdani42/nvim-tree.lua/issues/674
nvim-tree docs : https://github.com/kyazdani42/nvim-tree.lua/blob/master/doc/nvim-tree-lua.txt
pull/221/head
Darylle Villanueva 2 years ago
parent dd004512f2
commit f721dba894

@ -1,100 +1,104 @@
-- following options are the default -- following options are the default
-- each of these are documented in `:help nvim-tree.OPTION_NAME` -- each of these are documented in `:help nvim-tree.OPTION_NAME`
vim.g.nvim_tree_icons = {
default = "",
symlink = "",
git = {
unstaged = "",
staged = "S",
unmerged = "",
renamed = "",
deleted = "",
untracked = "U",
ignored = "",
},
folder = {
default = "",
open = "",
empty = "",
empty_open = "",
symlink = "",
},
}
local status_ok, nvim_tree = pcall(require, "nvim-tree") local status_ok, nvim_tree = pcall(require, "nvim-tree")
if not status_ok then if not status_ok then
return return
end end
local config_status_ok, nvim_tree_config = pcall(require, "nvim-tree.config") local config_status_ok, nvim_tree_config = pcall(require, "nvim-tree.config")
if not config_status_ok then if not config_status_ok then
return return
end end
local tree_cb = nvim_tree_config.nvim_tree_callback local tree_cb = nvim_tree_config.nvim_tree_callback
nvim_tree.setup { nvim_tree.setup {
disable_netrw = true, disable_netrw = true,
hijack_netrw = true, hijack_netrw = true,
open_on_setup = false, open_on_setup = false,
ignore_ft_on_setup = { ignore_ft_on_setup = {
"startify", "startify",
"dashboard", "dashboard",
"alpha", "alpha",
},
auto_close = true,
open_on_tab = false,
hijack_cursor = false,
update_cwd = true,
update_to_buf_dir = {
enable = true,
auto_open = true,
},
diagnostics = {
enable = true,
icons = {
hint = "",
info = "",
warning = "",
error = "",
}, },
}, open_on_tab = false,
update_focused_file = { hijack_cursor = false,
enable = true,
update_cwd = true, update_cwd = true,
ignore_list = {}, hijack_directories = {
}, enable = true,
git = { auto_open = true,
enable = true, },
ignore = true, diagnostics = {
timeout = 500, enable = true,
}, icons = {
view = { hint = "",
width = 30, info = "",
height = 30, warning = "",
hide_root_folder = false, error = "",
side = "left", },
auto_resize = true, },
mappings = { update_focused_file = {
custom_only = false, enable = true,
list = { update_cwd = true,
{ key = { "l", "<CR>", "o" }, cb = tree_cb "edit" }, ignore_list = {},
{ key = "h", cb = tree_cb "close_node" }, },
{ key = "v", cb = tree_cb "vsplit" }, git = {
}, enable = true,
ignore = true,
timeout = 500,
},
view = {
width = 30,
height = 30,
hide_root_folder = false,
side = "left",
auto_resize = true,
mappings = {
custom_only = false,
list = {
{ key = { "l", "<CR>", "o" }, cb = tree_cb "edit" },
{ key = "h", cb = tree_cb "close_node" },
{ key = "v", cb = tree_cb "vsplit" },
},
},
number = false,
relativenumber = false,
},
actions = {
quit_on_open = true,
window_picker = { enable = true },
}, },
number = false, renderer = {
relativenumber = false, highlight_git = true,
}, root_folder_modifier = ":t",
quit_on_open = 0, icons = {
git_hl = 1, show = {
disable_window_picker = 0, file = true,
root_folder_modifier = ":t", folder = true,
show_icons = { folder_arrow = true,
git = 1, git = true,
folders = 1, },
files = 1, glyphs = {
folder_arrows = 1, default = "",
tree_width = 30, symlink = "",
}, git = {
unstaged = "",
staged = "S",
unmerged = "",
renamed = "",
deleted = "",
untracked = "U",
ignored = "",
},
folder = {
default = "",
open = "",
empty = "",
empty_open = "",
symlink = "",
},
}
}
}
} }

Loading…
Cancel
Save