From 8773aae7f00a0937279fab06cc35ba698e4e24e1 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 13 Oct 2021 11:04:58 -0700 Subject: [PATCH] nvim: fix for nvimtree diagnostics error --- .config/nvim/lua/blake/other.lua | 33 +------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/.config/nvim/lua/blake/other.lua b/.config/nvim/lua/blake/other.lua index 9bd57ec..56db46c 100644 --- a/.config/nvim/lua/blake/other.lua +++ b/.config/nvim/lua/blake/other.lua @@ -41,38 +41,7 @@ M.nvimtree = function () } -- ]] require'nvim-tree'.setup { - disable_netrw = true, - hijack_netrw = true, - open_on_setup = false, - ignore_ft_on_setup = {}, - update_to_buf_dir = { - enable = true, - auto_open = true, - }, - auto_close = false, - open_on_tab = false, - hijack_cursor = false, - update_cwd = false, - lsp_diagnostics = false, - update_focused_file = { - enable = false, - update_cwd = false, - ignore_list = {} - }, - system_open = { - cmd = nil, - args = {} - }, - view = { - width = 30, - height = 30, - side = 'left', - auto_resize = false, - mappings = { - custom_only = false, - list = {} - } - } + hijack_cursor = true, } end -- <<<