mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 16:24:18 +00:00
Load libraries at start
This commit is contained in:
parent
ec28148ba8
commit
579f42156c
1 changed files with 9 additions and 1 deletions
10
init.el
10
init.el
|
|
@ -24,10 +24,18 @@
|
|||
(require 'org)
|
||||
(require 'use-package)
|
||||
|
||||
;; Remove comment if want to debug
|
||||
;; Uncomment if want to debug
|
||||
;; (progn
|
||||
;; (toggle-debug-on-error))
|
||||
|
||||
;; Add my modules
|
||||
|
||||
(add-to-list 'load-path "~/.emacs.d/lisp")
|
||||
(let ((default-directory "~/.emacs.d/lisp/"))
|
||||
(normal-top-level-add-subdirs-to-load-path))
|
||||
|
||||
(require 'libs)
|
||||
|
||||
(setq use-package-always-ensure t)
|
||||
|
||||
(org-babel-load-file
|
||||
|
|
|
|||
Loading…
Reference in a new issue