all repos

init.lua @ 7267f43

my nvim config
1 files changed, 1 insertions(+), 15 deletions(-)
updated nvimtree config
Author: Smirnov Alexander ss2316544@gmail.com
Committed at: 2022-03-26 19:08:59 +0200
Parent: 0f6ade9
M lua/fk/plugin/nvimtree.lua

@@ -2,9 +2,7 @@ vim.g.nvim_tree_group_empty = 1

require("nvim-tree").setup { disable_netrw = true, - hijack_netrw = true, auto_close = true, - auto_open = true, update_cwd = true, diagnostics = { enable = true,

@@ -19,26 +17,14 @@ filters = {

dotfiles = true, custom = { ".git", "node_modules", "__pycache__", "vendor", "env", ".bin" }, }, - git = { - enable = true, - ignore = false, - timeout = 300, - }, + git = { enable = true, ignore = false }, view = { - width = 30, - auto_resize = false, - hide_root_folder = false, mappings = { - custom_only = false, list = { { key = { "l", "<CR>", "o" }, action = "edit" }, { key = "h", action = "close_node" }, { key = "v", action = "vsplit" }, }, }, - }, - trash = { - cmd = "trash", - require_confirm = true, }, }