Skip to content

Commit 96d626e

Browse files
committed
feat: make git_status_async the default
1 parent 22e2bb3 commit 96d626e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ use {
121121
["<bs>"] = "navigate_up",
122122
["."] = "set_root",
123123
["H"] = "toggle_hidden",
124-
["I"] = "toggle_gitignore",
125124
["R"] = "refresh",
126125
["/"] = "fuzzy_finder",
127126
["f"] = "filter_on_submit",

lua/neo-tree/defaults.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ local config = {
77
popup_border_style = "NC", -- "double", "none", "rounded", "shadow", "single" or "solid"
88
use_popups_for_input = true, -- If false, inputs will use vim.ui.input() instead of custom floats.
99
close_floats_on_escape_key = true,
10-
enable_git_status = true,
1110
enable_diagnostics = true,
11+
enable_git_status = true,
12+
git_status_async = true,
1213
open_files_in_last_window = true, -- false = open files in top left window
1314
log_level = "info", -- "trace", "debug", "info", "warn", "error", "fatal"
1415
log_to_file = false, -- true, false, "/path/to/file.log", use :NeoTreeLogs to show the file

0 commit comments

Comments
 (0)