From 13b63e5c9347a1c332f1e7f1a574b1cef5bcc755 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 26 Aug 2012 15:27:30 -0400 Subject: .emacs: re-add wanderlust --- .emacs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs b/.emacs index 0637377..3cd2ea3 100644 --- a/.emacs +++ b/.emacs @@ -43,9 +43,10 @@ (setq my-el-get-packages '(el-get ; nxhtml + apel flim semi wanderlust smarttabs )) - + ;; Now load all of that ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ELPA -- cgit v1.2.3 From 75c76a2a86d5b8f650ee7793784794be81b8dabd Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 26 Aug 2012 15:27:54 -0400 Subject: .emacs.d/custom.el: sane minubuffer settings --- .emacs.d/custom.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/custom.el b/.emacs.d/custom.el index ee82309..5a3e67f 100644 --- a/.emacs.d/custom.el +++ b/.emacs.d/custom.el @@ -9,6 +9,7 @@ '(explicit-shell-file-name "/bin/bash") '(inhibit-startup-screen t) '(mdmua-maildir "~/Maildir") + '(minibuffer-prompt-properties (quote (read-only t point-entered minibuffer-avoid-prompt face minibuffer-prompt))) '(ruby-deep-arglist nil) '(ruby-deep-indent-paren nil) '(scroll-bar-mode nil)) -- cgit v1.2.3 From 84f05a28857bd1c4de055abfb57988330532fefe Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 26 Aug 2012 15:28:15 -0400 Subject: .gitconfig: configure email --- .gitconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitconfig b/.gitconfig index 86f8b1e..9846d72 100644 --- a/.gitconfig +++ b/.gitconfig @@ -3,3 +3,8 @@ email = LukeShu@sbcglobal.net [color] ui = auto +[sendemail] + smtpencryption = ssl + smtpserver = plus.smtp.mail.yahoo.com + smtpuser = lukeshu@sbcglobal.net + smtpserverport = 465 -- cgit v1.2.3 From 1b372d34d0f0d5a72d3b57135275a6f4b2eae3d9 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 27 Aug 2012 10:54:42 -0400 Subject: .git.info.exclude: fiddle around a bit --- .git.info.exclude | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/.git.info.exclude b/.git.info.exclude index 4576b6f..a2d075e 100644 --- a/.git.info.exclude +++ b/.git.info.exclude @@ -28,36 +28,44 @@ # Ignore temp/log/history files *.log log* -*cache* + *.tmp *.tmp.* tmp.* tmp-* tmp -*.lock -*.state -*~ -.#* -\#*# -.~lock.*# + *_history *_hist history.* -*authority +history + +*.lock +.~lock.*# +lock + +*.state *.cookie *.bak +*authority +*cache* + +# Ignore files left by editors +*~ +.#* +\#*# + + # Ignore these special-purpose cache/temp files .camel_certs .compiz/session/* .config/chromium/Default/History\ Index* .current.asound .dbus/session-bus/* -.ddd/history .ddd/sessions .dvdcss .esd_auth -.eshell/history .evolution/.* .gconfd/saved_state .gnash-media @@ -68,7 +76,7 @@ history.* .kde4/share/apps/okular/docdata/* .kde4/socket-* .lesshst -.links2/links.his +.link*/*.his .local/share/Trash/* .local/share/gvfs-metadata/* .local/share/icons/* @@ -76,10 +84,13 @@ history.* .pki .pulse .pulse-cookie +.recently-used .recently-used.xbel* +.setroubleshoot .shotwell/thumbs/* .sudo_as_admin_successful .thumbnails/* +.wireshark/recent* .xsession-errors* # Ignore files that are autogenerated -- cgit v1.2.3 From d794d461f2e91af847beed7783cde2c7e65fd725 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 27 Aug 2012 10:55:59 -0400 Subject: .login-daemons: start emacs on-demand, don't start sysfiles --- .login-daemons | 2 -- 1 file changed, 2 deletions(-) diff --git a/.login-daemons b/.login-daemons index 380b3f1..bf8cf21 100644 --- a/.login-daemons +++ b/.login-daemons @@ -1,8 +1,6 @@ #!/bin/sh if [ -x "`which daemon`" ]; then - daemon emacs --daemon - daemon sysfiles daemon maildirproc daemon gpg-agent --daemon --write-env-file "${HOME}/.gnupg/agent-info" daemon batterymon 20 " -- cgit v1.2.3