35 lines
1.1 KiB
EmacsLisp
35 lines
1.1 KiB
EmacsLisp
|
|
||
|
(require 'package)
|
||
|
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
|
||
|
(package-initialize)
|
||
|
|
||
|
(unless (package-installed-p 'use-package)
|
||
|
(package-refresh-contents)
|
||
|
(package-install 'use-package))
|
||
|
|
||
|
(require 'use-package)
|
||
|
|
||
|
; always follow symlinks
|
||
|
; (setq vc-follow-symlinks t)
|
||
|
|
||
|
; (org-babel-tangle-file "~/.emacs.d/settings.org")
|
||
|
|
||
|
(org-babel-do-load-languages 'org-babel-load-languages '((emacs-list . nil)))
|
||
|
|
||
|
(org-babel-load-file "~/.emacs.d/settings.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.
|
||
|
'(custom-safe-themes
|
||
|
'("bfc0b9c3de0382e452a878a1fb4726e1302bf9da20e69d6ec1cd1d5d82f61e3d" default))
|
||
|
'(package-selected-packages '(evil-mode)))
|
||
|
(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.
|
||
|
)
|