Skip to content

Instantly share code, notes, and snippets.

@vilmibm
Created February 10, 2014 16:51
Show Gist options
  • Save vilmibm/8919647 to your computer and use it in GitHub Desktop.
Save vilmibm/8919647 to your computer and use it in GitHub Desktop.
;;; personal -- Personal config on top of Prelude
;;; Commentary:
;; Wherein I customize Prelude's defaults and add things of my own choosing.
;;; Code:
(setq prelude-guru nil)
(evil-mode)
;; Extra key bindings
(define-key evil-normal-state-map [escape] 'keyboard-quit)
(global-set-key (kbd "C-<tab>") 'next-multiframe-window)
(global-set-key (kbd "<C-S-iso-lefttab>") 'previous-multiframe-window)
(global-set-key (kbd "C-<left>") 'shrink-window-horizontally)
(global-set-key (kbd "C-<right>") 'enlarge-window-horizontally)
(global-set-key (kbd "C-<down>") 'shrink-window)
(global-set-key (kbd "C-<up>") 'enlarge-window)
;; Org mode
(setq org-agenda-files (list "~/Documents/org/agenda.org"))
;; Font
(custom-set-faces
'(default ((t (:family "Inconsolata" :foundry "unknown" :slant normal :weight normal :height 98 :width normal)))))
(provide 'personal)
;;; personal.el ends here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment