X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=emacs.d_2%2Finit.el;h=7eb439db5dc76a1d06f7f87ef95f238d42087c01;hb=1178cd1a707c694c27fc5e722237258cc1a350b1;hp=afa46440178733407bdba89c1dd52ddf9981192a;hpb=e33d4fe8ae25a6c4ab1aa69801cbf61c51f667d7;p=dotfiles.git diff --git a/emacs.d_2/init.el b/emacs.d_2/init.el index afa4644..7eb439d 100644 --- a/emacs.d_2/init.el +++ b/emacs.d_2/init.el @@ -1,9 +1,3 @@ -;;; init.el --- Where all the magic begins -;; -;; This file loads Org-mode and then loads the rest of our Emacs initialization from Emacs lisp -;; embedded in literate Org-mode files. - -;; Load up Org Mode and (now included) Org Babel for elisp embedded in Org Mode files ;; Added by Package.el. This must come before configurations of ;; installed packages. Don't delete this line. If you don't want it, @@ -11,35 +5,23 @@ ;; You may delete these explanatory comments. (package-initialize) -(setq dotfiles-dir (file-name-directory (or (buffer-file-name) load-file-name))) - -(let* ((org-dir (expand-file-name - "lisp" (expand-file-name - "org" (expand-file-name - "src" dotfiles-dir)))) - (org-contrib-dir (expand-file-name - "lisp" (expand-file-name - "contrib" (expand-file-name - ".." org-dir)))) - (load-path (append (list org-dir org-contrib-dir) - (or load-path nil)))) - ;; load up Org-mode and Org-babel - (require 'org-install) - (require 'ob-tangle)) - -;; load up all literate org-mode files in this directory -(mapc #'org-babel-load-file (directory-files dotfiles-dir t "\\.org$")) - -;;; init.el ends here +(org-babel-load-file "~/.emacs.d/config.org") (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. - '(package-selected-packages (quote (use-package)))) + '(package-selected-packages + (quote + (counsel slime ido-exit-target undo-tree gnugo emms which-key ido-ubiquitous persp-projectile projectile company company-mode lispy worf use-package smex smartparens smart-comment org-bullets org multi-term magit linum-relative ido-vertical-mode flx-ido el-get color-theme-sanityinc-tomorrow color-theme color-identifiers-mode ace-window)))) (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. - ) + '(mode-line-buffer-id ((t (:foreground "black" :bold t)))) + '(org-block ((t (:background "#000000")))) + '(org-block-background ((t (:background "#000000")))) + '(org-block-begin-line ((t (:foreground "#008ED1" :background "#002E41")))) + '(org-block-end-line ((t (:foreground "#008ED1" :background "#002E41")))) + '(which-func ((t (:foreground "green")))))