You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xplr/config.yml

186 lines
3.0 KiB
YAML

general:
show_hidden: false
table:
header:
cols:
- format: "│ path"
- format: "is symlink"
- format: "index"
height: 1
style:
add_modifier:
bits: 1
sub_modifier:
bits: 0
row:
cols:
- format: "{{tree}}{{prefix}}{{icon}} {{relativePath}}{{#if isDir}}/{{/if}}{{suffix}}"
- format: "{{isSymlink}}"
- format: "{{focusRelativeIndex}}/{{bufferRelativeIndex}}/{{index}}/{{totalItems}}"
col_spacing: 3
col_widths:
- percentage: 60
- percentage: 20
- percentage: 20
tree:
- format: "├─"
- format: "├─"
- format: "╰─"
normal_ui:
prefix: " "
suffix: " "
focused_ui:
prefix: "▸ ["
suffix: "]"
style:
fg: Blue
add_modifier:
bits: 1
sub_modifier:
bits: 0
selected_ui:
prefix: " {"
suffix: "}"
style:
fg: LightGreen
add_modifier:
bits: 1
sub_modifier:
bits: 0
filetypes:
directory:
icon: ""
style:
add_modifier:
bits: 1
sub_modifier:
bits: 0
file:
icon: ""
symlink:
icon: ""
style:
fg: Blue
add_modifier:
bits: 1
sub_modifier:
bits: 0
extension:
md:
icon: ""
lock:
icon: ""
special:
poetry.lock:
icon: ""
key_bindings:
global:
ctrl-c:
help: quit
actions:
- Quit
q:
help: quit
actions:
- Quit
escape:
help: quit
actions:
- Quit
question-mark:
help: print debug info
actions:
- PrintAppStateAndQuit
left:
help: back
actions:
- Back
dot:
help: toggle show hidden
actions:
- ToggleShowHidden
right:
help: enter
actions:
- Enter
up:
help: up
actions:
- FocusPrevious
down:
help: down
actions:
- FocusNext
shift-g:
help: bottom
actions:
- FocusLast
tilda:
help: go home
actions:
- ChangeDirectory: ~
forward-slash:
help: go root
actions:
- ChangeDirectory: / # not working for some reason
explore_mode:
space:
help: select
actions:
- Select
- FocusNext
g:
help: go to
actions:
- EnterSubmode: GoTo
return:
help: done
actions:
- PrintFocusedAndQuit
explore_submodes:
GoTo:
g:
help: top
actions:
- FocusFirst
- ExitSubmode
select_mode:
space:
help: toggle selection
actions:
- ToggleSelection
- FocusNext
g:
help: go to
actions:
- EnterSubmode: GoTo
return:
help: done
actions:
- PrintSelectedAndQuit
select_submodes:
GoTo:
g:
help: top
actions:
- FocusFirst
- ExitSubmode