diff options
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/init.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9a64089..91d8e28 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -28,9 +28,10 @@ (global-set-key (kbd "C-c R") 'revert-buffer) (global-set-key (kbd "C-c w") 'whitespace-cleanup) +(global-set-key (kbd "C-c b s") 'bookmark-set) +(global-set-key (kbd "C-c b j") 'bookmark-jump) -;; compile -(global-set-key [f12] 'compile) +(global-set-key (kbd "<f12>") 'compile) (defun help/insert-em-dash () "Inserts an EM-DASH (not a HYPEN, not an N-DASH)" |