Skip to content

Instantly share code, notes, and snippets.

@gforcedev
Created May 20, 2016 16:02
Show Gist options
  • Save gforcedev/929e5c87d157921203b5fc4dccee8d32 to your computer and use it in GitHub Desktop.
Save gforcedev/929e5c87d157921203b5fc4dccee8d32 to your computer and use it in GitHub Desktop.
My .emacs
(add-to-list 'load-path "~/.emacs.d/el-get/el-get")
(unless (require 'el-get nil 'noerror)
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/"))
(package-refresh-contents)
(package-initialize)
;; (package-install 'el-get)
(require 'el-get))
(add-to-list 'el-get-recipe-path "~/.emacs.d/el-get-user/recipes")
(el-get 'sync)
(custom-set-variables
;; custom-set-variables 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.
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(ansi-color-names-vector
["#242424" "#e5786d" "#95e454" "#cae682" "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"])
'(ansi-term-color-vector
[unspecified "#000000" "#ff0000" "#33ff00" "#ff0099" "#0066ff" "#cc00ff" "#0066ff" "#d0d0d0"])
'(custom-enabled-themes (quote (wombat)))
'(custom-safe-themes
(quote
("9e76732c9af8e423236ff8e37dd3b9bc37dacc256e42cc83810fb824eaa529b9" "a922c743710bb5d7c14995345549141f01211ff5089057dc718a5a33104c3fd1" "e8e744a1b0726814ac3ab86ad5ccdf658b9ff1c5a63c4dc23841007874044d4a" default)))
'(inhibit-startup-screen t))
(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.
)
(global-set-key (kbd "C-S-p") 'helm-M-x)
(global-set-key (kbd "<ESC>") 'keyboard-quit)
(require 'evil)
(evil-mode 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment