From 931a4c914bc2c23177faab05fc76232fdd254076 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 26 Mar 2015 15:31:11 -0400 Subject: emacs: have org src fontify natively --- .config/emacs/custom.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/emacs/custom.el b/.config/emacs/custom.el index d81ac98..1fdb0d3 100644 --- a/.config/emacs/custom.el +++ b/.config/emacs/custom.el @@ -29,6 +29,7 @@ '(org-latex-pdf-process (quote ("xelatex -interaction nonstopmode -output-directory %o %f" "xelatex -interaction nonstopmode -output-directory %o %f" "xelatex -interaction nonstopmode -output-directory %o %f"))) + '(org-src-fontify-natively t) '(scroll-bar-mode nil) '(send-mail-function (quote smtpmail-send-it)) '(smtpmail-smtp-server "plus.smtp.mail.yahoo.com") -- cgit v1.2.3 From 66a3f7b35ca796b5b85442feadd9c8b2d2a28cf0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 26 Mar 2015 15:31:27 -0400 Subject: add a sane default git ignore list --- .config/git/ignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/git/ignore b/.config/git/ignore index e69de29..d0f607c 100644 --- a/.config/git/ignore +++ b/.config/git/ignore @@ -0,0 +1,3 @@ +#*# +.#* +*~ -- cgit v1.2.3 From e0f08aa75393b20cd1dbc14a3484f3a367108948 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 26 Mar 2015 15:32:06 -0400 Subject: wmii/rbar: remove dead code --- .config/wmii-hg/rbar | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.config/wmii-hg/rbar b/.config/wmii-hg/rbar index 9aaa485..b95f9c4 100755 --- a/.config/wmii-hg/rbar +++ b/.config/wmii-hg/rbar @@ -1,8 +1,4 @@ #!/bin/bash -IFS=: -read -r name prefix DISPLAY <<<"$1" -export DISPLAY - id=$1 name=${id#[0-9][0-9]_} -- cgit v1.2.3 From aaeb38790673d3e86207d4a5de45bde0e794805e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 26 Mar 2015 15:32:20 -0400 Subject: rbar_wifi: sort the wifis --- .config/wmii-hg/rbar_wifi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/wmii-hg/rbar_wifi b/.config/wmii-hg/rbar_wifi index eaf0137..f83d921 100755 --- a/.config/wmii-hg/rbar_wifi +++ b/.config/wmii-hg/rbar_wifi @@ -29,7 +29,7 @@ right-click() { IFS='' while read -r line; do list+=("$line") - done < <({ netctl-auto list; printf '> %s\n' 'New Network' 'Disable All' 'Enable All';} | sed 's,$,$,' | column -s '$' -t) + done < <({ netctl-auto list | sort -k1.2; printf '> %s\n' 'New Network' 'Disable All' 'Enable All';} | sed 's,$,$,' | column -s '$' -t) cur='' for item in "${list[@]}"; do -- cgit v1.2.3 From 4e5135eee28a7895dbc5fd74b0f49314a0f2397e Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 26 Mar 2015 15:32:39 -0400 Subject: config-path: add .npm-prefix --- .local/bin/config-path | 1 + 1 file changed, 1 insertion(+) diff --git a/.local/bin/config-path b/.local/bin/config-path index e81a986..4b7cccb 100755 --- a/.local/bin/config-path +++ b/.local/bin/config-path @@ -8,6 +8,7 @@ prefixes=( "$HOME/.prefix.$(uname -m)" "$HOME/.prefix" "$HOME"/.gem/ruby/* + "$HOME"/.npm-prefix ) in_array() { -- cgit v1.2.3