this repo has no description
0
fork

Configure Feed

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

reverting some mac specific changes

+16 -15
+13 -8
spacemacs-private/custom-config-org/packages.el
··· 58 58 ;; (expand-file-name (concat "plan-" 59 59 ;; (format-time-string "%Y-%m-%d") 60 60 ;; ".org") 61 - ;; "~/Documents/notes/Plans/"))) 61 + ;; "~/Documents/Org-Notes/Plans/"))) 62 62 ;; "#+FILETAGS: planning daily\n* %^{item}\n %^{date}T\n - %?\n") 63 63 64 64 ("t" "new todo" ··· 104 104 105 105 (defun custom-config-org/post-init-org () 106 106 (setq 107 - org-directory "~/Documents/notes" 107 + ;; org-directory "/Users/kaushik/Documents/Org-Notes/" 108 + org-directory "~/Document/org-notes" 108 109 109 - org-default-notes-file (cond ((string-equal system-type "darwin") 110 - "/Users/kaushik/Library/Mobile Documents/iCloud~com~appsonthemove~beorg/Documents/Org-Notes/todo.org") 111 - (t (concat org-directory "/todo.org"))) 110 + ;; org-default-notes-file "/Users/kaushik/Library/Mobile Documents/iCloud~com~appsonthemove~beorg/Documents/Org-Notes/todo.org" 111 + org-default-notes-file (concat org-directory "/todo.org") 112 + 113 + ;; org-agenda-files '( 114 + ;; "/Users/kaushik/Documents/Org-Notes/" 115 + ;; "/Users/kaushik/Library/Mobile Documents/iCloud~com~appsonthemove~beorg/Documents/Org-Notes/todo.org" 116 + ;; ) 112 117 113 - org-agenda-files (list 114 - org-directory 115 - org-default-notes-file 118 + org-agenda-files '( 119 + (org-directory) 120 + (org-default-notes-file) 116 121 ) 117 122 org-todo-keywords '((sequence 118 123 "TODO(t)"
+3 -7
spacemacs-private/custom-nix/packages.el
··· 54 54 (progn 55 55 ;; (find-file "~/Developer/src/personal/nix-config/darwin.nix") 56 56 ;; (find-file-other-window "~/Developer/src/personal/nixpkgs/pkgs/top-level/all-packages.nix"))) 57 - (find-file (cond ((string-equal system-type "darwin") "~/Developer/src/personal/nix-config/mac/home.nix") 58 - (t "~/src/ops/nix-config/precision/home.nix"))) 59 - (find-file-other-window (cond ((string-equal system-type "darwin") "~/Developer/src/personal/nix-config/mac/darwin.nix") 60 - (t "~/src/ops/nix-config/precision/default.nix"))) 61 - ) 62 - ) 63 - ) 57 + (find-file "~/src/ops/nix-config/precision/home.nix") 58 + (find-file-other-window "~/src/ops/nix-config/precision/default.nix"))) 59 + ) 64 60 65 61 ;;; packages.el ends here