summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2018-12-20 21:16:49 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2018-12-20 21:16:49 -0500
commitac8c3761d6be133740fe532a3efb0641be26c344 (patch)
tree7567909557ac0421237766fa08b36b757b7eafb9 /config
parent8d26c7a8fc0c0c13624646a9ea544676de437534 (diff)
update joshuto configuration file
Diffstat (limited to 'config')
-rw-r--r--config/joshuto.toml25
1 files changed, 17 insertions, 8 deletions
diff --git a/config/joshuto.toml b/config/joshuto.toml
index 916d1b7..f468176 100644
--- a/config/joshuto.toml
+++ b/config/joshuto.toml
@@ -1,13 +1,22 @@
+# sort_type options: size, natural, basename, atime, ctime, mtime, type, random
+## currently only supports: natural, mtime
+sort_type = "natural"
+
+# show hidden files
show_hidden = true
-# sort_method options: size, natural, basename, atime, ctime, mtime, type, random
-sort_method = "natural"
+# ratios for parent view, current view and preview
+column_ratio = [1, 3, 4]
+
+# does nothing so far
scroll_offset = 8
+# specify which applications to use to open certain file types
[mimetypes]
-"application/x-matroska" = [ "mpv" ]
-"application/x-shellscript" = [ "nano" ]
-"image/jpeg" = [ "feh" ]
-"image/png" = [ "feh", "-F" ]
-"text/plain" = [ "nano" ]
-"text/x-csrc" = [ "nano" ]
+"application/x-matroska" = [ ["mpv"] ]
+"application/x-shellscript" = [ ["nano"], ["gedit"] ]
+"image/jpeg" = [ ["qimgv"], ["feh"]]
+"image/png" = [ ["feh", "-F"] ]
+"text/plain" = [ ["nano"] ]
+"text/x-csrc" = [ ["nano"] ]
+