aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--misc/gpg-agent (renamed from gpg-agent)0
-rw-r--r--mutt/.signature (renamed from .signature)0
-rw-r--r--mutt/mailcap (renamed from misc/mailcap)0
-rw-r--r--mutt/muttrc (renamed from muttrc)3
-rwxr-xr-xtools/init/load-settings.sh1
6 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index afc76c8..a6eb2be 100644
--- a/Makefile
+++ b/Makefile
@@ -51,13 +51,13 @@ task:
51 fi 51 fi
52 52
53gpg: 53gpg:
54 ln -sf `pwd`/gpg-agent ~/.gnupg/gpg-agent.conf 54 ln -sf `pwd`/misc/gpg-agent ~/.gnupg/gpg-agent.conf
55 gpgconf --reload gpg-agent 55 gpgconf --reload gpg-agent
56 56
57mutt: 57mutt:
58 mkdir -p ~/.config/mutt 58 mkdir -p ~/.config/mutt
59 ln -sf `pwd`/muttrc ~/.config/mutt/muttrc 59 ln -sf `pwd`/mutt/muttrc ~/.config/mutt/muttrc
60 ln -sf `pwd`/misc/mailcap ~/.mailcap 60 ln -sf `pwd`/mutt/mailcap ~/.mailcap
61 61
62tmux: 62tmux:
63 ln -sf `pwd`/misc/tmux.conf ~/.tmux.conf 63 ln -sf `pwd`/misc/tmux.conf ~/.tmux.conf
diff --git a/gpg-agent b/misc/gpg-agent
index c852e83..c852e83 100644
--- a/gpg-agent
+++ b/misc/gpg-agent
diff --git a/.signature b/mutt/.signature
index 157a477..157a477 100644
--- a/.signature
+++ b/mutt/.signature
diff --git a/misc/mailcap b/mutt/mailcap
index b3ae9f4..b3ae9f4 100644
--- a/misc/mailcap
+++ b/mutt/mailcap
diff --git a/muttrc b/mutt/muttrc
index dfd8c00..6ad1101 100644
--- a/muttrc
+++ b/mutt/muttrc
@@ -9,7 +9,7 @@ set smtp_pass = "$imap_pass"
9# Identify meself 9# Identify meself
10set from = "pham@topo.tw" 10set from = "pham@topo.tw"
11set realname = "謝晉凡 Hsieh Chin Fan" 11set realname = "謝晉凡 Hsieh Chin Fan"
12set signature="$SETTING_DIR/.signature" 12set signature="$SETTING_DIR/mutt/.signature"
13set pgp_use_gpg_agent=yes 13set pgp_use_gpg_agent=yes
14set crypt_use_gpgme=yes 14set crypt_use_gpgme=yes
15set pgp_timeout=300 15set pgp_timeout=300
@@ -52,7 +52,6 @@ bind index \ck previous-entry
52bind index,browser G last-entry 52bind index,browser G last-entry
53bind index,browser g noop 53bind index,browser g noop
54bind index,browser gg first-entry 54bind index,browser gg first-entry
55bind index R group-reply
56bind index \cf next-page 55bind index \cf next-page
57bind index \cb previous-page 56bind index \cb previous-page
58bind index \cd half-down 57bind index \cd half-down
diff --git a/tools/init/load-settings.sh b/tools/init/load-settings.sh
index af75cc4..a4a157d 100755
--- a/tools/init/load-settings.sh
+++ b/tools/init/load-settings.sh
@@ -1,5 +1,6 @@
1export SETTING_DIR=${SETTING_DIR:=$HOME/settings} 1export SETTING_DIR=${SETTING_DIR:=$HOME/settings}
2export EDITOR=vim 2export EDITOR=vim
3export TERM=xterm
3 4
4# load custom aliases 5# load custom aliases
5source $SETTING_DIR/alias 6source $SETTING_DIR/alias