Simple two-panel file manager written in Rust inspired by vim and Total Commander
In order to get icons please install nerd font in your system (on screen Jetbrains Mono Nerd Font Mono)
h
- focus left panell
- focus right panelj
- next item k
- prev item ctrl + r
- open rename modalctrl + l
- move selected item from left to right panel ctrl + h
- move selected item from right to left panelctrl + c
- open create modal on focused panel ctrl + q
- quit program ctrl + o
- open dir in tab o
- open dir or file(right now it will open in neovim this will be configurable in future) n
- next tab p
- prev tab backspace
- navigate to dir parent esc
- close modal enter
- select modal option Configuration file should be named sfm.toml
and shoudl be placed in ~/
or ~/.config
directories.
* ### [core] section
- tickrate - update loop interval (default 240)
- useicons - turn on/off icons. Icons requre NerdFonts to be intsalled (default false)
foreground = { red = 255, blue = 100, green = 35 }
background = 2
quit = { key = "q", modifier = "C" }
focus_left_panel = { key = "h" }
focus_right_panel = { key = "l" }
move_down = { key = "j" }
move_up = { key = "k" }
next_tab = { key = "n" }
prev_tab = { key = "p" }
close = { key = "esc" }
open = { key = "o" }
open_as_tab = { key = "o", modifier = "C" }
navigate_up = { key = "backspace" }
delete = { key = "d", modifier = "C" }
move_left = { key = "h", modifier = "C" }
move_right = { key = "l", modifier = "C" }
rename = { key = "r", modifier = "C" }
create = { key = "c", modifier = "C" }
accept = { key = "enter" }
vi
rs = "nvim"
Right now you can clone this repo and perform cargo run
I will come with a more convenient way in the future.