Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
603 B

(setq custom-file "~/.emacs.d/custom.el")
(load custom-file 'noerror)
(require 'package)
(when (version< emacs-version "26.2")
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3"))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
(mapc #'(lambda (package)
(unless (package-installed-p package)
(package-install package)))
package-selected-packages)
(require 'org)
(org-babel-load-file
(expand-file-name "settings.org"
user-emacs-directory))