A faster nerdtree with built in icons and git commands
To open filer:
FilerOpen
To close filer:
FilerClose
To toggle filer being open:
FilerToggle
?
: Show a list of shortcuts within the pluginSpace
: Toggle a directory being openEnter
: Navigate into a directory, or open a filex
: Open a file using the default program (usingxdg-open
)r
: Reload the file treeu
: Navigate to the parent of the current directoryl
/h
: Open/close the current directory and jump in/out of itL
/H
: Set the pwd to be a directory higher/lowert
: Open the navigation menu (go To a certain directory)~
: Go to the home directory/
: Go to the root directory
i
: Show the metadata of a file or directoryf
: Open the file editting menum
: Move the filec
: Copy the filel
: Create a link to the filer
: Rename the filex
: Toggle the file being executabled
: Delete the file
v
: Open the git command menu (v for version control)a
: Git add the filel
: Show the git log historyc
: Create a new commitm
: Ammend the previous commit
a
: Open the add menuf
: Add a new empty filed
: Add a new empty directory
These customizations must occur after filer is loaded in your config, otherwise they will be overwritten.
Set the icon type to either 'filled' or 'outline' for the different types of nerdfont icons,
or to 'unicode' or 'text' if you don't have nerdfont installed, or are using a tty.
let g:filer#icon_type = 'filled' / 'outline' / 'unicode' / 'text'
Change how much each nested directory is indented.
let g:filer#indent_amount = 2
Highlight the current file, like ranger, instead of just showing the cursor.
let g:filer#enable_highlight = 1
Change the name of the filer buffer.
let g:filer#buffer_name = "Whatever you want"
Make filer open on the right side instead of the left.
let g:filer#buffer_position = 'right'
Set the width of the filer window when it opens.
let g:filer#buffer_size = 35