2018-07-17 15:35:42 -04:00
|
|
|
(require 'package)
|
|
|
|
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
|
|
|
|
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
|
|
|
|
(package-initialize)
|
|
|
|
|
|
|
|
(unless (package-installed-p 'use-package)
|
|
|
|
(package-refresh-contents)
|
|
|
|
(package-install 'use-package))
|
|
|
|
|
2018-12-13 22:45:12 -05:00
|
|
|
(defvar nd/conf-dir "~/.emacs.d/"
|
2018-12-11 20:05:56 -05:00
|
|
|
"The absolute path to the EMACS configuration directory.")
|
|
|
|
|
2018-12-13 22:45:12 -05:00
|
|
|
(defvar nd/conf-main (expand-file-name "conf.org" nd/conf-dir)
|
2018-12-11 20:05:56 -05:00
|
|
|
"The absolute path the main EMACS configuration file.")
|
|
|
|
|
|
|
|
(org-babel-load-file nd/conf-main)
|
2018-07-17 15:35:42 -04:00
|
|
|
|
|
|
|
;; (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.
|
|
|
|
(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.
|
2018-07-20 02:23:08 -04:00
|
|
|
'(package-selected-packages
|
2018-07-17 15:35:42 -04:00
|
|
|
(quote
|
2018-12-15 13:29:10 -05:00
|
|
|
(outline-magic toc-org ebib company-auctex dired-du helm-swoop evil-replace-with-register evil-commentary helm-flyspell csv-mode calf-org rainbow-delimiters-mode gtklp delight browse-kill-ring evil-org-agenda calfw calfw-org elpy diff-hl beacon ace-window))))
|
2018-07-20 01:52:34 -04:00
|
|
|
(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.
|
2018-08-06 12:27:26 -04:00
|
|
|
'(aw-leading-char-face ((t (:foreground "#292b2e" :background "#bc6ec5" :height 1.0 :box nil)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
(put 'upcase-region 'disabled nil)
|