fix(nvim): move deprecated options in nvim-tree

This commit is contained in:
Bruno Carlin 2022-03-28 18:28:26 +02:00 committed by Bruno Carlin
parent ca6922ef81
commit bace8b1cc7
2 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,3 @@
require "settings" require "settings"
require "lsp"
require "plugins" require "plugins"
require "lsp"

View file

@ -4,15 +4,11 @@ vim.g.nvim_tree_highlight_opened_files = 1 -- 0 by default, will enable folder a
vim.g.nvim_tree_root_folder_modifier = ':~' -- This is the default. See :help filename-modifiers for more options vim.g.nvim_tree_root_folder_modifier = ':~' -- This is the default. See :help filename-modifiers for more options
vim.g.nvim_tree_add_trailing = 1 -- 0 by default, append a trailing slash to folder names vim.g.nvim_tree_add_trailing = 1 -- 0 by default, append a trailing slash to folder names
vim.g.nvim_tree_group_empty = 1 -- 0 by default, compact folders that only contain a single folder into one node in the file tree vim.g.nvim_tree_group_empty = 1 -- 0 by default, compact folders that only contain a single folder into one node in the file tree
vim.g.nvim_tree_disable_window_picker = 1 -- 0 by default, will disable the window picker.
vim.g.nvim_tree_icon_padding = ' ' -- one space by default, used for rendering the space between the icon and the filename. Use with caution, it could break rendering if you set an empty string depending on your font. vim.g.nvim_tree_icon_padding = ' ' -- one space by default, used for rendering the space between the icon and the filename. Use with caution, it could break rendering if you set an empty string depending on your font.
vim.g.nvim_tree_symlink_arrow = '->' -- defaults to ' ➛ '. used as a separator between symlinks' source and target. vim.g.nvim_tree_symlink_arrow = '->' -- defaults to ' ➛ '. used as a separator between symlinks' source and target.
vim.g.nvim_tree_respect_buf_cwd = 1 -- 0 by default, will change cwd of nvim-tree to that of new buffer's when opening nvim-tree. vim.g.nvim_tree_respect_buf_cwd = 1 -- 0 by default, will change cwd of nvim-tree to that of new buffer's when opening nvim-tree.
vim.g.nvim_tree_create_in_closed_folder = 0 -- 1 by default, When creating files, sets the path of a file when cursor is on a closed folder to the parent folder when 0, and inside the folder when 1. vim.g.nvim_tree_create_in_closed_folder = 0 -- 1 by default, When creating files, sets the path of a file when cursor is on a closed folder to the parent folder when 0, and inside the folder when 1.
vim.g.nvim_tree_window_picker_exclude = { --
filetype = { packer, },
buftype = { terminal },
}
-- Dictionary of buffer option names mapped to a list of option values that -- Dictionary of buffer option names mapped to a list of option values that
-- indicates to the window picker that the buffer's window should not be -- indicates to the window picker that the buffer's window should not be
-- selectable. -- selectable.
@ -101,4 +97,16 @@ require('nvim-tree').setup {
hide_root_folder = false, hide_root_folder = false,
side = 'left', side = 'left',
}, },
actions = {
open_file = {
window_picker = {
enable = true,
chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890",
exclude = {
filetype = { "notify", "packer", "qf", "diff", "fugitive", "fugitiveblame" },
buftype = { "nofile", "terminal", "help" },
},
},
},
},
} }