diff options
| author | Luke Hoersten <[email protected]> | 2011-04-03 11:26:27 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2011-04-03 11:26:27 -0500 |
| commit | 5167a3947fb5a713a38668414bf99c6263fc9108 (patch) | |
| tree | 06f1d9d09c07115315affa8186011792d496e7db /init.el | |
| parent | ba850febdc5647f8a2e3bbb98994c5d3f8b6acf2 (diff) | |
Added eclipse-style line moving and eshell init.
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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) |
