Replies: 2 comments 3 replies
-
If you want somegthing to open in float mode by default, you just need to set window = {
position = "float", in that sources section of the config, like you have done with the
The README has a very detailed explanation of how to use the |
Beta Was this translation helpful? Give feedback.
-
Hey @speri203, also using Lunarvim. I have set require("neo-tree").setup({
auto_clean_after_session_restore = true,
close_if_last_window = true,
source_selector = {
winbar = true,
statusline = true,
},
window = {
position = "right",
width = 30,
},
buffers = {
follow_current_file = true,
},
filesystem = {
follow_current_file = true,
hijack_netrw_behavior = "open_current",
use_libuv_file_watcher = true,
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_by_name = {
"node_modules"
},
never_show = {
".DS_Store",
"thumbs.db"
},
},
},
}) |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am trying to configure my Neo-tree to mimic AstroVim, and also the following screenshot from the docs,

, but I am unable to get it working. I can access the buffer and git using float mode but am not seeing the option when I access :Neotree. My config is pulled from Astrovim and looks like this:
I am using LazyVim which is why the structure looks like this
Beta Was this translation helpful? Give feedback.
All reactions