summaryrefslogtreecommitdiffstats
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-07-15 12:36:15 -0400
committerDavid Robillard <d@drobilla.net>2014-07-15 12:36:15 -0400
commit47dd5b69f3645b2c6312413038da77b0f888b275 (patch)
treec8e7f0ae94f0cb25355a9fe960e851a2ef9e31eb /emacs.d/init.el
parent03125a55365efc9a06dc8aad2e2940df8ededccc (diff)
downloaddotfiles-47dd5b69f3645b2c6312413038da77b0f888b275.tar.gz
dotfiles-47dd5b69f3645b2c6312413038da77b0f888b275.tar.bz2
dotfiles-47dd5b69f3645b2c6312413038da77b0f888b275.zip
More portable key bindings.
Switch to Droid Sans Mono.
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 4ee331c..03d2f43 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -68,7 +68,7 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- '(default ((t (:stipple nil :background "grey10" :foreground "grey80" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 130 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
+ '(default ((t (:stipple nil :background "grey10" :foreground "grey80" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 130 :width normal :foundry "unknown" :family "Droid Sans Mono"))))
'(bold ((t (:weight bold))))
'(cursor ((t (:background "grey80"))))
'(diff-added ((t (:foreground "#859900"))))
@@ -134,7 +134,9 @@
(set-window-start w2 s1)
(setq i (1+ i))))))))
-(global-set-key "\C-b" 'compile)
+(global-set-key (kbd "C-b") 'compile)
+(global-set-key (kbd "M-p") 'previous-error)
+(global-set-key (kbd "M-n") 'next-error)
(global-set-key [C-up] 'previous-error)
(global-set-key [C-down] 'next-error)
(global-set-key [C-tab] 'switch-to-previous-buffer)