This commit is contained in:
Tom Willemsen 2012-04-05 14:40:24 +00:00
commit ab76bcaa64
11 changed files with 91 additions and 16 deletions

View file

@ -1,5 +1,5 @@
# -*- eval: (git-auto-commit-mode 1) -*- # -*- eval: (git-auto-commit-mode 1) -*-
export BROWSER=conkeror export BROWSER=firefox
export EDITOR="emacsclient -c -a emacs" export EDITOR="emacsclient -c -a emacs"
export INFOPATH="${HOME}/documents/info:${INFOPATH}" export INFOPATH="${HOME}/documents/info:${INFOPATH}"
export PATH="${HOME}/bin:${PATH}:/usr/local/bin" export PATH="${HOME}/bin:${PATH}:/usr/local/bin"

View file

@ -1,7 +1,7 @@
# -*- mode: conf-colon; eval: (git-auto-commit-mode 1); -*- # -*- mode: conf-colon; eval: (git-auto-commit-mode 1); -*-
[beets] [beets]
library: ~/.local/share/beets/library.blb library: ~/.local/share/beets/library.blb
directory: /mnt/music/mp3/ directory: /mnt/music/lib/
plugins: mpdupdate embedart plugins: mpdupdate embedart
[paths] [paths]

View file

@ -1,6 +1,6 @@
# -*- eval: (git-auto-commit-mode 1) -*- # -*- eval: (git-auto-commit-mode 1) -*-
auto-reload yes auto-reload yes
browser conkeror browser firefox
confirm-exit yes confirm-exit yes
feedlist-format "%-35t %?d?- %-35d&? %> %u" feedlist-format "%-35t %?d?- %-35d&? %> %u"
max-items 500 max-items 500

View file

@ -43,6 +43,7 @@ http://feeds.feedburner.com/FalloutTutorials devel
http://www.devarticles.com/rss.xml devel http://www.devarticles.com/rss.xml devel
http://www.script-tutorials.com/feed/rss/ http://www.script-tutorials.com/feed/rss/
http://news.ycombinator.com/rss http://news.ycombinator.com/rss
http://stackoverflow.com/feeds/tag?tagnames=c&sort=newest
#-----[ Linux and FLOSS ]--------------------------------------------- #-----[ Linux and FLOSS ]---------------------------------------------
http://www.reddit.com/r/commandline/.rss linux http://www.reddit.com/r/commandline/.rss linux
@ -77,6 +78,8 @@ http://www.emacswiki.org/emacs?action=rss emacs
http://feeds.feedburner.com/XahsEmacsBlog http://feeds.feedburner.com/XahsEmacsBlog
http://www.masteringemacs.org/feed/ http://www.masteringemacs.org/feed/
http://wikemacs.org/wiki/index.php?title=Special:RecentChanges&feed=atom http://wikemacs.org/wiki/index.php?title=Special:RecentChanges&feed=atom
http://stackoverflow.com/feeds/tag?tagnames=emacs&sort=newest
http://stackoverflow.com/feeds/tag?tagnames=elisp&sort=newest
#-----[ N900 ]-------------------------------------------------------- #-----[ N900 ]--------------------------------------------------------
http://www.reddit.com/r/n900/.rss n900 http://www.reddit.com/r/n900/.rss n900
@ -95,6 +98,7 @@ http://rollingrelease.com/?feed=rss software
http://sourceforge.net/export/rss2_keepsake.php?group_id=134378 software http://sourceforge.net/export/rss2_keepsake.php?group_id=134378 software
http://valajournal.blogspot.com/feeds/posts/default software http://valajournal.blogspot.com/feeds/posts/default software
http://www.gimp.org/news.rdf http://www.gimp.org/news.rdf
http://stackoverflow.com/feeds/tag?tagnames=git&sort=newest
#-----[ Games ]------------------------------------------------------- #-----[ Games ]-------------------------------------------------------
http://feeds.feedburner.com/qj/qjnet game http://feeds.feedburner.com/qj/qjnet game

View file

@ -2,6 +2,7 @@
cwd = make_file("/home/slash/downloads/"); cwd = make_file("/home/slash/downloads/");
url_remoting_fn = load_url_in_new_buffer; url_remoting_fn = load_url_in_new_buffer;
read_buffer_show_icons = true; read_buffer_show_icons = true;
hint_digits = ";ASDFGHJKL";
hints_minibuffer_annotation_mode(true); hints_minibuffer_annotation_mode(true);

View file

@ -1,14 +1,5 @@
// -*- eval: (git-auto-commit-mode 1) -*- // -*- eval: (git-auto-commit-mode 1) -*-
define_webjump("archwiki",
"https://wiki.archlinux.org/index.php?search=%s",
$alternative="https://wiki.archlinux.org");
define_webjump("aur",
"https://aur.archlinux.org/packages.php?O=0&K=%s&do_Search=Go",
$alternative="https://aur.archlinux.org");
define_webjump("archpackages",
"https://www.archlinux.org/packages/?sort=&q=%s&limit=50",
$alternative="https://packages.archlinux.org");
define_webjump("emacswiki", define_webjump("emacswiki",
"http://www.google.com/cse?cx=004774160799092323420%3A6-ff2s0o6yi&q=%s", "http://www.google.com/cse?cx=004774160799092323420%3A6-ff2s0o6yi&q=%s",
$alternative="http://www.emacswiki.org"); $alternative="http://www.emacswiki.org");
@ -27,3 +18,16 @@ define_webjump("metal-archives",
define_webjump("djangodocs", define_webjump("djangodocs",
"https://docs.djangoproject.com/search/?q=%s&release=5", "https://docs.djangoproject.com/search/?q=%s&release=5",
$alternative="https://docs.djangoproject.com/"); $alternative="https://docs.djangoproject.com/");
define_webjump("google",
"https://duckduckgo.com?q=!google%%20%s");
// Archlinux
define_webjump("arch/wiki",
"https://wiki.archlinux.org/index.php?search=%s",
$alternative="https://wiki.archlinux.org");
define_webjump("arch/aur",
"https://aur.archlinux.org/packages.php?O=0&K=%s&do_Search=Go",
$alternative="https://aur.archlinux.org");
define_webjump("arch/packages",
"https://www.archlinux.org/packages/?sort=&q=%s&limit=50",
$alternative="https://packages.archlinux.org");

1
.gitignore vendored
View file

@ -114,3 +114,4 @@ Mail/
.diaspora/ .diaspora/
.mu/ .mu/
.org-timestamps/ .org-timestamps/
.virtualenv/

View file

@ -21,6 +21,7 @@
(define previous-tag '()) (define previous-tag '())
(define current-tag "default") (define current-tag "default")
(define terminal "st")
;;;_ Macros ;;;_ Macros
(define-macro (cmd command) (define-macro (cmd command)
@ -156,7 +157,7 @@ the command."
(xbindkey-function `(,modkey x) X-function-map) (xbindkey-function `(,modkey x) X-function-map)
(xbindkey-function `(,modkey w) W-function-map) (xbindkey-function `(,modkey w) W-function-map)
(xbindkey-function `(,modkey s) S-function-map) (xbindkey-function `(,modkey s) S-function-map)
(xbindkey `(,modkey Return) "urxvt") (xbindkey `(,modkey Return) terminal)
(xbindkey '(control alt l) "i3lock -c 000000") (xbindkey '(control alt l) "i3lock -c 000000")
(xbindkey '(XF86HomePage) "conkeror") (xbindkey '(XF86HomePage) "conkeror")
(xbindkey '(XF86Mail) "mutt") (xbindkey '(XF86Mail) "mutt")

View file

@ -11,7 +11,8 @@ xbindkeys &
-fn "-misc-tamsyn-medium-r-normal-*-14-*-*-*-*-*-iso8859-*" \ -fn "-misc-tamsyn-medium-r-normal-*-14-*-*-*-*-*-iso8859-*" \
-nb "#000000" -nf "#15abc3" & -nb "#000000" -nf "#15abc3" &
#_ Start session #_ Start session
exec ck-launch-session /usr/bin/herbstluftwm 2>&1 > ~/.xsession_errors #exec ck-launch-session /usr/bin/herbstluftwm 2>&1 >> ~/.xsession_errors
exec ck-launch-session /usr/local/bin/dwm 2>&1 >> ~/.xsession_errors
#_ Local Variables #_ Local Variables
# Local Variables: # Local Variables:
# mode: shell-script # mode: shell-script

2
.zshrc
View file

@ -50,8 +50,6 @@ precmd_functions+='precmd_update_updates'
chpwd_functions+='chpwd_update_git_vars' chpwd_functions+='chpwd_update_git_vars'
# Set the prompt. # Set the prompt.
. /etc/bash_completion.d/git
PROMPT='$(prompt)' PROMPT='$(prompt)'
RPROMPT='$(rprompt)' RPROMPT='$(rprompt)'

65
README.org Normal file
View file

@ -0,0 +1,65 @@
# -*- eval: (git-auto-commit-mode 1) -*-
* .Xdefaults
Currently uses colors from [[http://ethanschoonover.com/solarized][solarized]] theme for everything. Sets
other settings for [[http://software.schmorp.de/pkg/rxvt-unicode][urxvt]], [[http://invisible-island.net/xterm/][xterm]], XFT, [[http://www.gnu.org/software/emacs][GNU Emacs]] and ~xfontsel~.
* .Xmodmap
I'm a lefty, so this reverses my first 3 mouse buttons. I've also
set it up to switch my ~Control~ and ~Caps Lock~, and my ~Shift~ and
~Super~ keys (on the left side of my keyboard).
* .bash_profile
Sets some environment variables. Even though I use [[http://zsh.sourceforge.net/][zsh]],
~.bash_profile~ gets sourced first of all anyway. Currently sets
~BROWSER~ and ~EDITOR~ and adds paths to ~INFOPATH~ and ~PATH~.
* .beetsconfig
Configuration for [[http://beets.radbox.org/][beets]].
* .conky_box.lua
Some lua file to draw a semi-transparent box around [[http://conky.sourceforge.net/][conky]] to keep it
readable on every kind of background without fully obscuring that
background.
* .conkyrc
Configuration for [[http://conky.sourceforge.net/][conky]].
* .fonts.conf
Fontconfig file that (in my opinion) gives me some nice looking
fonts. I don't really know if I've actually got a good config, but
after messing around with parts of it I'm fairly happy with it.
* .gitconfig
Configuration for [[http://git-scm.com][git]]. Adds some aliases:
- ~st~: short status list.
- ~unadd~: reset a file or the entire working tree.
- ~lschanged~: list files that have changed.
- ~history~: Show a graph of the history of a branch.
* .guile
Enables ~readline~ functionality in the [[http://www.gnu.org/software/guile/][guile]] REPL.
* .hgrc
Configuration for [[http://mercurial.selenic.com/][mercurial]]. Only sets my name/email.
* .offlineimap.py
Python function file for [[http://offlineimap.org/][offlineimap]]. Defines a function to get a
username and another for password from ~.netrc~.
* .offlineimap
Configuration for [[http://offlineimap.org/][offlineimap]]. Calls [[http://www.djcbsoftware.nl/code/mu/][mu]] as a post sync hook to index
new mails.