This commit is contained in:
Inhji 2024-02-13 21:39:08 +05:45
parent 13ad435643
commit fae532f142
1 changed files with 5 additions and 4 deletions

View File

@ -4,9 +4,13 @@
(setq user-full-name "Jonathan Jenne" (setq user-full-name "Jonathan Jenne"
user-mail-address "johnnie@posteo.de") user-mail-address "johnnie@posteo.de")
;; Load Path
(add-to-list 'load-path "~/.config/doom/lisp")
;; Org Path ;; Org Path
(setq +user-org-path "~/Notes/Org") (setq +user-org-path "~/Notes/Org")
(defun org-path (filename) (expand-file-name filename +user-org-path)) (defun org-path (filename)
(expand-file-name filename +user-org-path))
;; Default Shell ;; Default Shell
;; Useful if default system shell is not bash ;; Useful if default system shell is not bash
@ -23,9 +27,6 @@
;; Set Emacs theme ;; Set Emacs theme
(setq doom-theme 'catppuccin) (setq doom-theme 'catppuccin)
;; Dashboard
(setq dashboard-startup-banner nil)
;; Org-Mode ;; Org-Mode
(add-to-list 'org-modules 'org-habit) (add-to-list 'org-modules 'org-habit)