Created
October 1, 2018 00:29
-
-
Save jlollis/63bd2acc8bc5e23a726e03a9d295ca2d to your computer and use it in GitHub Desktop.
.emacs settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(package-initialize) | |
(require 'package) | |
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) | |
(package-initialize) | |
'(packages-archives | |
(quote | |
(("gnu" . "http://elpa.gnu.org/packages/") | |
("Melpa" . "https://stable.melpa.org/packages/")))) | |
(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 | |
["#2d3743" "#ff4242" "#74af68" "#dbdb95" "#34cae2" "#008b8b" "#00ede1" "#e1e1e0"]) | |
'(custom-enabled-themes '(manoj-dark))) | |
(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. | |
) | |
(require 'simpleclip) | |
(simpleclip-mode 1) | |
(add-to-list 'load-path "~/.emacs.d/elpa/nyan-mode-1.1.1/") | |
(require 'nyan-mode) | |
(nyan-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(setq package--init-file-ensured t)
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(setq package--init-file-ensured t)
'(packages-archives
(quote
(("gnu" . "http://elpa.gnu.org/packages/")
("Melpa" . "https://stable.melpa.org/packages/"))))
(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
["#2d3743" "#ff4242" "#74af68" "#dbdb95" "#34cae2" "#008b8b" "#00ede1" "#e1e1e0"])
'(custom-enabled-themes '(manoj-dark)))
(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.
)
(require 'simpleclip)
(simpleclip-mode 1)
(add-to-list 'load-path "~/.emacs.d/elpa/nyan-mode-1.1.1/")
(require 'nyan-mode)
(nyan-mode)