src.nth.io/

summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2015-09-24 11:04:22 -0500
committerLuke Hoersten <[email protected]>2015-09-24 11:04:22 -0500
commit94eb147519b3ad124f8e24c415eae162efe4a4bc (patch)
treed242d81a150d467a881bf05679627e00a924d7e4 /init.el
parent38e77988dc704aa5910b0a256b63264ba34e9b05 (diff)
Gave up on SHM.
Diffstat (limited to 'init.el')
-rw-r--r--init.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/init.el b/init.el
index 3826d08..09636d2 100644
--- a/init.el
+++ b/init.el
@@ -27,7 +27,7 @@
;;; Coding
-(which-func-mode t) ; show current function
+(which-function-mode t) ; show current function
(transient-mark-mode t) ; show highlighting
(global-font-lock-mode t) ; syntax highlighting
(global-set-key (kbd "C-c c") 'compile) ; compile
@@ -53,7 +53,7 @@
(scroll-bar-mode -1) ; remove scroll bar
(unless is-mac (menu-bar-mode -1)) ; remove menu bar
(visual-line-mode t) ; word wrap break on whitespace
- (set-default-font (if is-mac "Ubuntu Mono-12" "Ubuntu Mono-10.5")))
+ (set-frame-font (if is-mac "Ubuntu Mono-12" "Ubuntu Mono-10.5")))
;;;; Packages ;;;;
@@ -61,7 +61,7 @@
(require 'package-require)
(package-require '(company exec-path-from-shell expand-region
smex markdown-mode markdown-mode+ ix hgignore-mode move-text paredit
- rainbow-delimiters rainbow-mode json-mode json-reformat
+ rainbow-delimiters rainbow-mode json-mode json-reformat flycheck
solarized-theme terraform-mode visual-regexp yasnippet yaml-mode
zencoding-mode))
@@ -145,6 +145,7 @@
(add-hook
'emacs-lisp-mode-hook
(lambda ()
+ (flycheck-mode)
(rainbow-mode)
(enable-paredit-mode)))