56 lines
2.0 KiB
EmacsLisp
56 lines
2.0 KiB
EmacsLisp
;; -*- mode: elisp -*-
|
|
|
|
;; Bootstrap's bootstraps
|
|
;;;; bootstrap's bootstraps
|
|
|
|
(package-initialize)
|
|
(require 'package)
|
|
(setq package-archives
|
|
'(("melpa" . "http://melpa.milkbox.net/packages/")
|
|
("gnu" . "http://elpa.gnu.org/packages/")
|
|
("elpy" . "http://jorgenschaefer.github.io/packages/")))
|
|
|
|
(unless (package-installed-p 'use-package)
|
|
(package-refresh-contents)
|
|
(package-install 'use-package))
|
|
|
|
(eval-when-compile
|
|
(require 'use-package))
|
|
|
|
;; load my files
|
|
(load-file "~/.emacs.d/org-protocol-capture-html.el")
|
|
(load-file "~/.emacs.d/src/keychain-environment.el")
|
|
(load-file "~/.emacs.d/jlj-generic.el")
|
|
(load-file "~/.emacs.d/jlj-golang.el")
|
|
(load-file "~/.emacs.d/jlj-org.el")
|
|
(load-file "~/.emacs.d/jlj-python.el")
|
|
(load-file "~/.emacs.d/jlj-rust.el")
|
|
;; (load-file "~/.emacs.d/jlj-social.el")
|
|
|
|
;; load keychain (if it exists)
|
|
(when (eq system-type 'gnu/linux)
|
|
(keychain-refresh-environment)
|
|
)
|
|
|
|
|
|
(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.
|
|
'(epg-gpg-program "/usr/local/bin/gpg")
|
|
'(global-hl-line-mode t)
|
|
'(package-selected-packages
|
|
(quote
|
|
(projectile webfeeder znc pinboard yaml-mode which-key web-mode virtualenvwrapper use-package twittering-mode try smex racer powershell poetry pipenv ox-reveal outline-magic org-pdfview org-bullets ob-restclient multiple-cursors magit lua-mode lsp-ui iedit helm flycheck-rust exec-path-from-shell eglot edit-indirect company-lsp ansible ace-window))))
|
|
'(znc-servers
|
|
`(("bouncer.awful.club" 5000 t
|
|
((freenode "blindidiotgod/freenode" ,znc-password)
|
|
(OFTC "blindidiotgod/OFTC" ,znc-password)))))
|
|
(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.
|
|
)
|