From 62cd83bace8e77cd1ff7028da6cf65d0d1defa27 Mon Sep 17 00:00:00 2001
From: hut This is the default configuration file of ranger.index
/home/hut/ranger/ranger/defaults/options.py
-If you do any changes, make sure the import-line stays
-intact and the type of the value stays the same.
+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.
- |
@@ -33,7 +45,8 @@ intact and the type of the value stays t
collapse_preview = True |