kelly-lin / ranger.nvim

Ranger plugin for neovim
MIT License
152 stars 13 forks source link

the ranger buffer has too many unnecessary UI elements enabled #1

Closed alezunino closed 1 year ago

alezunino commented 1 year ago

When opening a ranger window, it uses the default nvim UI elements (ruler, statusbar, etc) that are not necessary in ranger. This can be easily fixed by using the "minimal" style when creating the ranger window with [vim.api.nvim_open_win](https://neovim.io/doc/user/api.html#nvim_open_win()). The following patch solves this minor issue: winStyle.txt

kelly-lin commented 1 year ago

Thanks @alezunino, I have made the changes and pushed them.