this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix nvim-tree setup option changes (not done yet)

+18 -33
+18 -33
lua/user/nvim-tree.lua
··· 33 33 34 34 local tree_cb = nvim_tree_config.nvim_tree_callback 35 35 36 + -- TODO: Update this with original github setup {} code 36 37 nvim_tree.setup { 37 38 disable_netrw = true, 39 + hijack_cursor = false, 38 40 hijack_netrw = true, 39 41 open_on_setup = false, 40 42 ignore_ft_on_setup = { ··· 43 45 "alpha", 44 46 }, 45 47 open_on_tab = false, 46 - hijack_cursor = false, 47 48 update_cwd = true, 48 - update_to_buf_dir = { 49 - enable = true, 50 - auto_open = true, 49 + view = { 50 + width = 30, 51 + height = 30, 52 + hide_root_folder = false, 53 + side = "left", 54 + mappings = { 55 + custom_only = false, 56 + list = { 57 + { key = { "l", "<CR>", "o" }, cb = tree_cb "edit" }, 58 + { key = "h", cb = tree_cb "close_node" }, 59 + { key = "v", cb = tree_cb "vsplit" }, 60 + }, 61 + }, 62 + number = false, 63 + relativenumber = false, 51 64 }, 52 65 diagnostics = { 53 66 enable = true, ··· 74 87 git = { 75 88 enable = true, 76 89 ignore = true, 77 - timeout = 500, 78 - }, 79 - view = { 80 - width = 30, 81 - height = 30, 82 - hide_root_folder = false, 83 - side = "left", 84 - auto_resize = true, 85 - mappings = { 86 - custom_only = false, 87 - list = { 88 - { key = { "l", "<CR>", "o" }, cb = tree_cb "edit" }, 89 - { key = "h", cb = tree_cb "close_node" }, 90 - { key = "v", cb = tree_cb "vsplit" }, 91 - }, 92 - }, 93 - number = false, 94 - relativenumber = false, 90 + timeout = 400, 95 91 }, 96 92 trash = { 97 93 cmd = "trash", 98 94 require_confirm = true, 99 - }, 100 - quit_on_open = 0, 101 - git_hl = 1, 102 - disable_window_picker = 0, 103 - root_folder_modifier = ":t", 104 - show_icons = { 105 - git = 1, 106 - folders = 1, 107 - files = 1, 108 - folder_arrows = 1, 109 - tree_width = 30, 110 95 }, 111 96 actions = { 112 97 open_file = {