2018-02-27 21:07:50 +01:00
|
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
2018-10-07 23:59:31 +02:00
|
|
|
# Copyright (C) 2017-2018 Donovan Glover
|
2018-02-27 21:07:50 +01:00
|
|
|
|
|
|
|
# Make it easier to 1) know what view we're in and 2) select files
|
|
|
|
set line_numbers absolute
|
|
|
|
|
|
|
|
# Remove the unused space on the right since we won't be using a mouse
|
|
|
|
set padding_right false
|
|
|
|
|
|
|
|
# Show version control information
|
|
|
|
set vcs_aware true
|
|
|
|
|
|
|
|
# Always confirm that you want to delete something
|
|
|
|
set confirm_on_delete always
|
|
|
|
|
|
|
|
# Don't save the console history on exit
|
|
|
|
set save_console_history false
|
|
|
|
|
|
|
|
# Disable the mouse input to avoid opening random stuff
|
|
|
|
set mouse_enabled false
|
|
|
|
|
|
|
|
# Alias r to rename
|
|
|
|
alias r rename
|
|
|
|
|
|
|
|
# Alias d to delete
|
|
|
|
alias d delete
|
|
|
|
|
2018-10-12 20:37:34 +02:00
|
|
|
# Alias w to wal
|
2018-10-17 07:20:42 +02:00
|
|
|
alias w shell -fs launch wal -o "$HOME/.config/wal/done.sh" -i %f
|
2018-10-12 20:37:34 +02:00
|
|
|
|
2018-10-07 23:59:31 +02:00
|
|
|
set use_preview_script true
|
|
|
|
set preview_files true
|
|
|
|
set preview_images true
|
|
|
|
set preview_images_method urxvt
|
|
|
|
|
2018-02-27 21:07:50 +01:00
|
|
|
# vim:ft=dosini
|