-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
32 lines (26 loc) · 960 Bytes
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(require 'package)
(setq package-enable-at-startup nil)
(add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/"))
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
(package-initialize)
(setq inhibit-startup-message t) ;; get rid of startup screen
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(add-to-list
'default-frame-alist'(ns-transparent-titlebar . t))
(add-to-list
'default-frame-alist'(ns-appearance . light))
(setq custom-safe-themes t)
(use-package poet-theme
:ensure t
:config (load-theme 'poet-dark))
(setq org-agenda-files (directory-files-recursively "~/Dropbox/org-notebooks" "\\.org$"))
;; Loading all emacs config from ~/.emacs.d/emacs.org
(org-babel-load-file (expand-file-name "~/.emacs.d/emacs.org"))
;;
;;
;; STATIC CONFIG ENDS HERE
;;
;;