summaryrefslogtreecommitdiffstats
path: root/config.yaml
diff options
context:
space:
mode:
authorkyoheiu <kyoheiu@outlook.com>2022-11-09 05:45:45 +0900
committerkyoheiu <kyoheiu@outlook.com>2022-11-09 05:45:45 +0900
commit86fa3380fe29d7b465c7e113097b8a6abac2951a (patch)
treed242c4cef9bf4060df016c9ac870dff116106d71 /config.yaml
parentca190fe207827a9f0f1bc66680d133ac6bad8cf6 (diff)
Add yaml example
Diffstat (limited to 'config.yaml')
-rw-r--r--config.yaml57
1 files changed, 57 insertions, 0 deletions
diff --git a/config.yaml b/config.yaml
new file mode 100644
index 0000000..a057c44
--- /dev/null
+++ b/config.yaml
@@ -0,0 +1,57 @@
+# (Optional) Default exec command when open files.
+# If not set, will default to $EDITOR.
+# default: nvim
+
+# (Optional)
+# key (the command you want to use): [values] (extensions)
+exec:
+ feh:
+ [jpg, jpeg, png, gif, svg]
+ zathura:
+ [pdf]
+
+# (Optional) Whether to use syntax highlighting in the preview mode.
+# If not set, will default to false.
+syntax_highlight: true
+
+# (Optional) Default theme for syntax highlighting.
+# Pick one from the following:
+# Base16OceanDark
+# Base16EightiesDark
+# Base16MochaDark
+# Base16OceanLight
+# InspiredGitHub
+# SolarizedDark
+# SolarizedLight
+# If not set, will default to "Base16OceanDark".
+default_theme: Base16EightiesDark
+
+# (Optional) Path to .tmtheme file for the syntax highlighting.
+# If not set, default_theme will be used.
+# theme_path: "/home/kyohei/.config/felix/monokai.tmtheme"
+
+# The foreground color of directory, file and symlink.
+# Pick one of the following:
+# Black // 0
+# Red // 1
+# Green // 2
+# Yellow // 3
+# Blue // 4
+# Magenta // 5
+# Cyan // 6
+# White // 7
+# LightBlack // 8
+# LightRed // 9
+# LightGreen // 10
+# LightYellow // 11
+# LightBlue // 12
+# LightMagenta // 13
+# LightCyan // 14
+# LightWhite // 15
+# Rgb(u8, u8, u8)
+# AnsiValue(u8)
+# For more details, see https://docs.rs/termion/1.5.6/termion/color/index.html
+color:
+ dir_fg: LightCyan
+ file_fg: LightWhite
+ symlink_fg: LightYellow