Starting out with org-roam

This commit is contained in:
Andrea Ciceri 2021-10-18 13:58:48 +02:00
parent 741d9b5b6a
commit b22971dbd5
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
9 changed files with 96 additions and 11 deletions

View file

@ -3,6 +3,14 @@
(setq gc-cons-threshold 100000000
read-process-output-max (* 1024 1024))
(defun executable-find (command) ;; to move
"Search for COMMAND in `exec-path' and return the absolute file name.
Return nil if COMMAND is not found anywhere in `exec-path'."
;; Use 1 rather than file-executable-p to better match the behavior of
;; call-process.
(locate-file command exec-path exec-suffixes 1))
(require 'aesthetics)
(require 'config-emacs)
(require 'config-evil)
@ -14,4 +22,7 @@
(require 'config-treemacs)
(require 'config-lsp)
(require 'config-python)
(require 'config-spelling)
(require 'nix)
(server-start)