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.
dotfiles/emacs_home.el

27 lines
871 B

(setq org-agenda-files (list "~/Documents/home-org-mode/tweaking.org"
"~/Documents/org-mode/school.org"
"~/Documents/home-org-mode/untitled_project.org"
"~/Documents/home-org-mode/personal.org"))
3 years ago
(set-frame-font "Iosevka:size=16")
(use-package all-the-icons)
(setq org-roam-directory (file-truename "~/Documents/slipbox"))
(org-roam-db-autosync-mode)
3 years ago
(add-to-list 'auto-mode-alist '("neomutt" . mail-mode))
3 years ago
(setq appt-message-warning-time 15
appt-display-format 'window)
(appt-activate 1)
(defun notify-send (title msg)
(interactive)
(shell-command (concat "notify-send '" title "' '" msg "'")))
(defun facade-notify-appt (min-to-app new-time msg)
(notify-send (format "Appointment in %s minute(s)" min-to-app) msg))
(setq appt-disp-window-function (function facade-notify-appt))
3 years ago
(provide 'emacs_home)
;;;emacs_home.el ends here