src.nth.io/

summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2011-04-03 11:26:27 -0500
committerLuke Hoersten <[email protected]>2011-04-03 11:26:27 -0500
commit5167a3947fb5a713a38668414bf99c6263fc9108 (patch)
tree06f1d9d09c07115315affa8186011792d496e7db /init.el
parentba850febdc5647f8a2e3bbb98994c5d3f8b6acf2 (diff)
Added eclipse-style line moving and eshell init.
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/init.el b/init.el
index 989b561..dc9596e 100644
--- a/init.el
+++ b/init.el
@@ -52,6 +52,7 @@
(cond
((string-match "darwin" (emacs-version)) "Menlo-12")
((string-match "HoldenCaulfield" (system-name)) "monospace-7")
+ ((string-match "lhoersten-66113" (system-name)) "monospace-8")
("monospace-10")))
(tool-bar-mode -1) ; remove tool bar
@@ -68,7 +69,11 @@
;;; terminal
(global-set-key (kbd "C-c s") 'eshell) ; start shell
-(add-hook 'eshell-mode-hook '(lambda () (setenv "TERM" "emacs"))) ; enable colors
+(add-hook
+ 'eshell-mode-hook
+ '(lambda ()
+ (setenv "TERM" "emacs") ; enable colors
+ (setenv "PATH" (concat "~/.cabal/bin:" (getenv "PATH"))))) ; add cabal binaries
;;;; Mode-Specific ;;;;
@@ -158,6 +163,7 @@
(require 'hoersten-pastebin-region) ; send selected text to pastebin
(require 'hoersten-c-style) ; load c specific lisp
(require 'vala-mode) ; vala programming language
+(require 'move-line) ; move line up or down
;;; pretty-mode - unicode character replacement
(require 'pretty-mode)