aboutsummaryrefslogtreecommitdiffstats
path: root/cower
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-02-02 20:35:42 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-02-02 22:01:01 +0100
commit7e7aa928072775240ff70ca61f2dd0e8a09242d8 (patch)
treee22d0a73612befd95744dec72770e74593ab47cd /cower
downloaddotfiles-7e7aa928072775240ff70ca61f2dd0e8a09242d8.tar.xz
(Let's pretend that this is the) initial commit
Diffstat (limited to 'cower')
-rw-r--r--cower/config39
1 files changed, 39 insertions, 0 deletions
diff --git a/cower/config b/cower/config
new file mode 100644
index 0000000..0dec69d
--- /dev/null
+++ b/cower/config
@@ -0,0 +1,39 @@
+#
+# example cower config file
+#
+# All options here can be overriden with flags on the command line. All options
+# are case sensitive. This file will be read per user, and should be located at
+# $XDG_CONFIG_HOME/cower/config or $HOME/.config/cower/config.
+#
+
+# Use color in the output. This takes an optional arg of auto/never/always,
+# identical to the command line arg --color. If no arg is specified, this is
+# assumed to mean auto.
+Color = auto
+
+# Connection timeout to be passed to curl. Setting this to 0 will disable
+# timeouts.
+#ConnectTimeout =
+
+# Always ignore out of date packages. This can be overridden on the command line
+# with --no-ignore-ood.
+#IgnoreOOD
+
+# Ignore the specified packages when checking for updates. Multiple arguments
+# to this option should be space delimited. Similar to the --ignore option,
+# this is in addition to any packages found in pacman's config.
+IgnorePkg = weechat-git beets-git
+
+# Ignore the specified binary repos when checking for updates. Multiple arguments
+# to this option should be space delimited.
+#IgnoreRepo =
+
+# Absolute path to download and extract to. Parameter and tilde expansions are
+# honored here.
+TargetDir = /home/kyrias/build/
+
+# Max number of threads cower will use. This is synonymous with the max number
+# of concurrent connections that will be opened to the AUR.
+MaxThreads = 4
+
+# vim: set noet syn=conf