this repo has no description
0
fork

Configure Feed

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

mac specific changes

+19 -21
+4 -5
spacemacs
··· 90 90 ;; '(your-package :location "~/path/to/your-package/") 91 91 ;; Also include the dependencies as they will not be resolved automatically. 92 92 dotspacemacs-additional-packages 93 - '( 94 - ;; direnv 95 - ) 93 + '() 96 94 ;; A list of packages that cannot be updated. 97 95 dotspacemacs-frozen-packages 98 96 '() ··· 214 212 ;; Default font, or prioritized list of fonts. `powerline-scale' allows to 215 213 ;; quickly tweak the mode-line size to make separators look not too crappy. 216 214 dotspacemacs-default-font 217 - '("SF Mono" 218 - ;; :size 16 215 + `("SF Mono" 216 + ,(if (string-equal system-type "darwin") :size);; :size 16 217 + ,(if (string-equal system-type "darwin") 16);; :size 16 219 218 :weight normal 220 219 :width normal 221 220 :powerline-scale 1.1
+8 -13
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/Org-Notes/Plans/"))) 61 + ;; "~/Documents/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 "/Users/kaushik/Documents/Org-Notes/" 108 - org-directory "~/Document/org-notes" 107 + org-directory "~/Documents/notes" 109 108 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") 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"))) 112 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 - ;; ) 117 - 118 - org-agenda-files '( 119 - (org-directory) 120 - (org-default-notes-file) 113 + org-agenda-files (list 114 + org-directory 115 + org-default-notes-file 121 116 ) 122 117 org-todo-keywords '((sequence 123 118 "TODO(t)"
+7 -3
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 "~/src/ops/nix-config/precision/home.nix") 58 - (find-file-other-window "~/src/ops/nix-config/precision/default.nix"))) 59 - ) 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 + ) 60 64 61 65 ;;; packages.el ends here