-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivate.el
39 lines (30 loc) · 1.46 KB
/
private.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
33
34
35
36
37
38
39
(message "==Using private, not work configuration==")
;; recursively find .org files in provided directory
;; modified from an Emacs Lisp Intro example
(defun sa-find-org-file-recursively (directory &optional filext)
"Return .org and .org_archive files recursively from DIRECTORY.
If FILEXT is provided, return files with extension FILEXT instead."
;; FIXME: interactively prompting for directory and file extension
(let* (org-file-list
(case-fold-search t) ; filesystems are case sensitive
(file-name-regex "^[^.#].*") ; exclude .*
(filext (if filext filext "org$\\\|org_archive"))
(fileregex (format "%s\\.\\(%s$\\)" file-name-regex filext))
(cur-dir-list (directory-files directory t file-name-regex)))
;; loop over directory listing
(dolist (file-or-dir cur-dir-list org-file-list) ; returns org-file-list
(cond
((file-regular-p file-or-dir) ; regular files
(if (string-match fileregex file-or-dir) ; org files
(add-to-list 'org-file-list file-or-dir)))
((file-directory-p file-or-dir)
(dolist (org-file (sa-find-org-file-recursively file-or-dir filext)
org-file-list) ; add files found to result
(add-to-list 'org-file-list org-file)))))))
(setq org-agenda-files (sa-find-org-file-recursively "~/repos"))
(setq org-todo-keywords
'((sequence "TODO" "ACTIVE" "|" "DONE" "FAILED")))
(c-set-offset 'innamespace 0)
(setq-default tab-width 4)
;; (smart-tabs-insinuate 'c++ 'c 'javascript)
;; (setq c-default-style "k&r")