Skip to content

Instantly share code, notes, and snippets.

@jlollis
Created October 1, 2018 00:29
Show Gist options
  • Save jlollis/63bd2acc8bc5e23a726e03a9d295ca2d to your computer and use it in GitHub Desktop.
Save jlollis/63bd2acc8bc5e23a726e03a9d295ca2d to your computer and use it in GitHub Desktop.
.emacs settings
(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)
@jlollis
Copy link
Author

jlollis commented Oct 1, 2018

(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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment