Can't put floating option to the right. #1765
-
Here's my current |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
require("nvim-tree").setup {
view = {
side = "right",
float = {
enable = true,
quit_on_focus_loss = false,
},
},
}
See |
Beta Was this translation helpful? Give feedback.
-
@fnacarellidev Did you manage to figure this out? It seems when I do the following the anchor doesn't change (or perhaps I'm misunderstanding the option). I am also trying to move the floating window to the right.
|
Beta Was this translation helpful? Give feedback.
-
Recipe is here. |
Beta Was this translation helpful? Give feedback.
view.side
does not apply to floating windows. You can set all your floating window parameters viaview.float
.See
:help nvim_open_win
for all the options.anchor
might be the one you are looking for.