You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_to_file=false, -- true, false, "/path/to/file.log", use ':lua require("neo-tree").show_logs()' to show the file
34
+
-- The minimum level of log statements that should be logged to the log file.
35
+
log_level=vim.log.levels.INFO, -- or other vim.log.levels (up to .ERROR), or "trace", "debug", "info", "warn", "error", "fatal"
36
+
-- For usabiliity, the minimum console log level = max(log_level, INFO) unless set explicitly using a table:
37
+
-- log_level = {
38
+
-- file = vim.log.levels.INFO,
39
+
-- console = vim.log.levels.INFO,
40
+
-- },
41
+
42
+
-- true, false, "/path/to/file.log", use ':lua require("neo-tree").show_logs()' to show the file.
43
+
-- Default location is `vim.fn.stdpath("data") .. "/" .. "neo-tree.nvim.log"`
44
+
log_to_file=false,
36
45
open_files_in_last_window=true, -- false = open files in top left window
37
46
open_files_do_not_replace_types= { "terminal", "Trouble", "qf", "edgy" }, -- when opening files, do not use windows containing these filetypes or buftypes
0 commit comments