summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.bash_profile7
-rw-r--r--.conkerorrc/webjumps.js3
-rw-r--r--.gitignore1
-rw-r--r--.zshenv1
-rw-r--r--.zshrc6
5 files changed, 10 insertions, 8 deletions
diff --git a/.bash_profile b/.bash_profile
new file mode 100644
index 0000000..ebd9117
--- /dev/null
+++ b/.bash_profile
@@ -0,0 +1,7 @@
+# -*- eval: (git-auto-commit-mode 1) -*-
+export BROWSER=conkeror
+export EDITOR="emacsclient -c -a emacs"
+export INFOPATH="${HOME}/documents/info:${INFOPATH}"
+export PATH="${HOME}/bin:${PATH}:/usr/local/bin"
+
+alias cower="cower --color=always --target=$HOME/var/aur"
diff --git a/.conkerorrc/webjumps.js b/.conkerorrc/webjumps.js
index 68ee7f5..608c3b6 100644
--- a/.conkerorrc/webjumps.js
+++ b/.conkerorrc/webjumps.js
@@ -24,3 +24,6 @@ define_webjump("ddg",
define_webjump("metal-archives",
"http://www.metal-archives.com/search?searchString=%s&type=band_name",
$alternative="http://www.metal-arhives.com");
+define_webjump("djangodocs",
+ "https://docs.djangoproject.com/search/?q=%s&release=5",
+ $alternative="https://docs.djangoproject.com/");
diff --git a/.gitignore b/.gitignore
index a840b29..30a7d0c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -104,7 +104,6 @@ xhtml-loader.rnc
.emacs.d/
.cuyo
.lgames
-.bash*
.beetsmusic.blb
.beetsstate
.msmtprc
diff --git a/.zshenv b/.zshenv
index 7463693..1aba482 100644
--- a/.zshenv
+++ b/.zshenv
@@ -10,7 +10,6 @@ export LESS_TERMCAP_ue=$'\e[0m'
export LESS_TERMCAP_us=$'\e[0;36m'
export PAGER=$LESSCMD
-export EDITOR="emacsclient -c"
# Aliases
alias alpine="alpine -p ""{imap.gmail.com/ssl/user=tom.willemsen@archlinux.us}remote_pinerc"""
diff --git a/.zshrc b/.zshrc
index 24168ba..d7b0427 100644
--- a/.zshrc
+++ b/.zshrc
@@ -1,11 +1,5 @@
# -*- Mode: shell-script; eval: (git-auto-commit-mode 1) -*-
# Setup variables
-PATH="${HOME}/bin:${PATH}:/usr/local/bin"
-INFOPATH="${HOME}/documents/info:${INFOPATH}"
-
-export INFOPATH
-export BROWSER=conkeror
-
HISTFILE=~/.zsh/histfile
HISTSIZE=1000
SAVEHIST=1000