Can I make the layout minimal for neovim? #440
-
Hey, I was searching for something similar to nvim-tree when I remembered that I had xplr installed because of gpg-tui. I thought maybe I could use this with neovim? I've managed to strip the UI down to just the table using this in version = '0.17.2'
local xplr = xplr
xplr.config.layouts.custom.nvim = 'Table'
local general = {
show_hidden = true,
enable_recover_mode = false,
hide_remaps_in_help_menu = true,
initial_layout = 'nvim',
initial_mode = 'default',
}
for k, v in pairs(general) do
xplr.config.general[k] = v
end but the permissions, size, and type columns are still active as show in this screenshot. Can I hide/disable them using the config? |
Beta Was this translation helpful? Give feedback.
Answered by
sayanarijit
Feb 9, 2022
Replies: 2 comments 1 reply
-
Yes... See this: https://github.com/sayanarijit/zentable.xplr/blob/main/init.lua |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ayushnix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes... See this: https://github.com/sayanarijit/zentable.xplr/blob/main/init.lua