edubkendo
10/16/2014 - 5:09 AM

gistfile1.txt

(add-to-list 'load-path "~/.emacs.d")
(add-to-list 'custom-theme-load-path "~/.emacs.d/base16")
(add-to-list 'load-path "~/.emacs.d/powerline")

(load-theme 'base16-eighties t)

(require 'package)
(add-to-list 'package-archives
  '("melpa-stable" . "http://melpa-stable.milkbox.net/packages/") t)
(push '("marmalade" . "http://marmalade-repo.org/packages/")
        package-archives )
(package-initialize)

(require 'evil)
  (evil-mode 1)
(define-key evil-normal-state-map (kbd "q") nil)
(require 'powerline)
(powerline-center-evil-theme)
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; 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 (:inherit prog-mode-default :height 200 :family "Anonymous Pro"))) t))