(add-to-list 'load-path "~/.emacs.d") ;; el-get (load "el-get-init") ;; evil (require 'evil) (load "evil-settings") (evil-mode 1) ;; wrap long lines (setq truncate-partial-width-windows nil) ;; show parens (show-paren-mode 1) ;; line numbering (global-linum-mode 1) (setq linum-format "%4d ") ;; scrollbar on the right (set-scroll-bar-mode 'right) ;; theming (require 'color-theme) (color-theme-initialize) (color-theme-charcoal-black) ;; use Poly/ML as SML interpreter (setq sml-program-name "poly") ;; custom file (setq custom-file "~/.emacs.d/custom.el") (load custom-file)