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 ctrl + x
- copy selected item from left panel to right panelctrl + z
- copy selected item from right panel to left panelctrl + s
- search in focused panelo
- open dir or file(default: vi) 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 should be placed in ~/
or ~/.config
directories.
* ### [core] section
- tickrate - update loop interval (default 240)
- useicons - turn on/off icons. Icons require NerdFonts to be installed (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" }
copy_to_right = { key = "x", modifier = "C" }
copy_to_left = { key = "z", modifier = "C" }
vi
rs = "nvim"
```bash cargo install sfm
```