diff --git a/.config/lolcate/config.toml b/.config/lolcate/config.toml new file mode 100644 index 0000000..742d8cb --- /dev/null +++ b/.config/lolcate/config.toml @@ -0,0 +1,8 @@ +[types] +# Definition of custom path name types +# Examples: +img = ".*\\.(jp.?g|png|gif|JP.?G)$" +video = ".*\\.(flv|mp4|mp.?g|avi|wmv|mkv|3gp|m4v|asf|webm)$" +doc = ".*\\.(pdf|chm|epub|djvu?|mobi|azw3|odf|ods|md|tex|txt|adoc)$" +audio = ".*\\.(mp3|m4a|flac|ogg)$" + diff --git a/.config/lolcate/default/config.toml b/.config/lolcate/default/config.toml new file mode 100644 index 0000000..62db387 --- /dev/null +++ b/.config/lolcate/default/config.toml @@ -0,0 +1,23 @@ + +description = "Default" + +# Directories to index. +dirs = [ + # "~/first/dir", + # "/second/dir" + "/" +] + +# Set to "Dirs" or "Files" to skip directories or files. +# If unset, or set to "None", both files and directories will be included. +# skip = "Dirs" + +# Set to true if you want skip symbolic links +ignore_symlinks = false + +# Set to true if you want to ignore hidden files and directories +ignore_hidden = false + +# Set to true to read .gitignore files and ignore matching files +gitignore = false + diff --git a/.config/lolcate/default/ignores b/.config/lolcate/default/ignores new file mode 100644 index 0000000..4a3d869 --- /dev/null +++ b/.config/lolcate/default/ignores @@ -0,0 +1,7 @@ +# Dirs / files to ignore. +# Use the same syntax as gitignore(5). +# Common patterns: +# +# .git +# *~ +.git \ No newline at end of file