ranger.defaults.options | index /home/hut/ranger/ranger/defaults/options.py |
This is the default configuration file of ranger.
There are two ways of customizing ranger. The first and recommended
method is creating a file at ~/.ranger/options.py and adding
those lines you want to change. It might look like this:
from ranger.api.options import *
preview_files = False # I hate previews!
max_history_size = 2000 # I can afford it.
The other way is directly editing this file. This will make upgrades
of ranger more complicated though.
Whatever you do, make sure the import-line stays intact and the type
of the values stay the same.
Modules | ||||||
|
Data | ||
autosave_bookmarks = True collapse_preview = True directories_first = True flushinput = True hidden_filter = <_sre.SRE_Pattern object at 0x1d26810> max_filesize_for_preview = 307200 max_history_size = 20 preview_files = True reverse = False scroll_offset = 2 show_cursor = False show_hidden = False sort = 'basename' update_title = False |