src.nth.io/

summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2018-08-16 20:20:43 -0500
committerLuke Hoersten <[email protected]>2018-08-16 20:20:43 -0500
commit87cc3d0dcd3f8112619b87aed6506a5676117342 (patch)
treee5aa78b82cca123b830123de4887560e42a86fd2 /init.el
parentbf068963fcc5748ae67be52ca8b661da4cd4df35 (diff)
parent8870db1cd3c4e6925fe97c4315f88a02aea3a666 (diff)
merge
Diffstat (limited to 'init.el')
-rw-r--r--init.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/init.el b/init.el
index c52c84f..fe9aa7b 100644
--- a/init.el
+++ b/init.el
@@ -1,7 +1,7 @@
;; ~/.emacs.d/init.el (~/.emacs)
;; Luke Hoersten <[email protected]>
-;;;; General ;;;;
+;;; Code:
(add-to-list 'load-path "~/.emacs.d/elisp") ; set default emacs load path
(setq-default
@@ -134,8 +134,11 @@
(exec-path-from-shell-copy-env "PYTHONPATH")
(exec-path-from-shell-initialize)
(eshell)
-(add-hook 'eshell-mode-hook (lambda () (setenv "TERM" "emacs")))
(setq tramp-default-method "ssh")
+(add-hook 'eshell-mode-hook
+ (lambda ()
+ (setenv "TERM" "emacs")
+ (setenv "PAGER" "cat")))
;;; ido / smex / completion
(setq-default
@@ -231,7 +234,8 @@
clojure-mode-hook
emacs-lisp-mode-hook
conf-mode-hook
- yaml-mode-hook))
+ yaml-mode-hook
+ sql-mode-hook))
;;; expand-region