This commit is contained in:
tavo-wasd 2024-07-08 18:16:36 -06:00
parent 4aa0fc1fd6
commit a9fa989189

View file

@ -316,10 +316,8 @@
;; ---
;; --- Org Agenda ---
(setq org-agenda-files (quote ("~/Documents/agenda/appts.org"
"~/Documents/agenda/archive.org"
"~/Documents/agenda/events.org"
"~/Documents/agenda/tasks.org")))
(setq org-agenda-files (quote ("~/Documents/agenda/archive.org"
"~/Documents/agenda/agenda.org")))
;; ---
;; --- Keybinds ---
@ -346,6 +344,16 @@
(setq org-return-follows-link t)
;; ---
(if (eq system-type 'android)
(progn
(use-package exec-path-from-shell
:custom
(shell-file-name "/data/data/com.termux/files/usr/bin/bash")
(exec-path-from-shell-variables '("PATH" "MANPATH" "PKG_CONFIG_PATH"))
:init
(if (string-equal system-type "android")
(exec-path-from-shell-initialize)))))
(add-hook 'server-after-make-frame-hook 'dashboard-refresh-buffer)
(message "init.el loaded successfully")
;; init.el ends here