this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

local changes

+14 -6
+13 -5
doom-config/config.el
··· 7 7 ;; Some functionality uses this to identify you, e.g. GPG configuration, email 8 8 ;; clients, file templates and snippets. 9 9 (setq user-full-name "Kaushik Chakraborty" 10 - user-mail-address "kaushik.chakraborty3@cognizant.com") 10 + user-mail-address (if (string-equal system-type "darwin") "kaushik.chakraborty3@cognizant.com" "git@kaushikc.org")) 11 11 12 12 ;; Doom exposes five (optional) variables for controlling fonts in Doom. Here 13 13 ;; are the three important ones: ··· 56 56 (set-popup-rule! "^\\*Org Agenda" :ignore t) 57 57 58 58 (after! org 59 - (setq org-directory "~/developer/src/personal/notes" 59 + (setq org-directory (cond ((string-equal system-type "darwin") "~/developer/src/personal/notes")(t "~/Documents/notes")) 60 60 org-default-notes-file (concat org-directory "/inbox.org") 61 61 org-agenda-files (list 62 62 org-directory ··· 108 108 (file (lambda () 109 109 (expand-file-name (concat (format-time-string "%Y%m%d%H%M%S") 110 110 ".md") 111 - "~/developer/src/personal/blog/micro-posts/"))) 111 + (cond ((string-equal system-type "darwin") "~/developer/src/personal/blog/micro-posts/") (t "~/src/blog/micro-posts"))))) 112 112 "---\npublished : %<%Y-%m-%d %H:%M:%S%z>\n---\n\n%c%?") 113 113 114 114 ("n" "New Note" ··· 202 202 (setq display-line-numbers-type t) 203 203 204 204 ;; projectile 205 - (setq projectile-project-search-path '("~/developer/src/personal/" 206 - "~/developer/src/work/")) 205 + (setq projectile-project-search-path (cond ((string-equal system-type "darwin") 206 + '( 207 + "~/developer/src/personal/" 208 + "~/developer/src/work/")) 209 + (t '( 210 + "~/src" 211 + "~/src/repo" 212 + "~/src/ops" 213 + "~/src/projects" 214 + "~/src/learn")))) 207 215 208 216 (use-package! super-save 209 217 :config
+1 -1
doom-config/init.el
··· 134 134 ;;lua ; one-based indices? one-based indices 135 135 (markdown +grip) ; writing docs for people to ignore 136 136 ;;nim ; python + lisp at the speed of c 137 - ;;nix ; I hereby declare "nix geht mehr!" 137 + nix ; I hereby declare "nix geht mehr!" 138 138 ;;ocaml ; an objective camel 139 139 (org ; organize your plain life in plain text 140 140 +dragndrop ; drag & drop files/images into org buffers