This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**** git | |
Macbooks need to ignore these files using a file .gitignore | |
https://github.com/github/gitignore/blob/main/Global/macOS.gitignore | |
***** Install and initial setup | |
****** install git (for windows, you could install git-bash) then do this: | |
brew install git | |
[decided to take an audit of all my brew and cask files, had to brush up on that] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'(org-agenda-calendar-event ((t (:background "white" :foreground "dark gray" :weight normal)))) | |
'(org-agenda-current-time ((t (:foreground "turquoise3" :underline nil)))) | |
'(org-agenda-date ((t (:foreground "black" :overline t :weight normal :height 1.2)))) | |
'(org-agenda-date-today ((t (:background "pale turquoise" :foreground "#4F4A3D" :overline t :weight bold :height 1.6)))) | |
'(org-agenda-date-weekend ((t (:foreground "black" :overline t :weight bold :height 1.2)))) | |
'(org-agenda-structure ((t (:foreground "black" :weight normal :height 1.4)))) | |
'(org-scheduled-previously ((t (:background "white" :foreground "red")))) | |
'(org-scheduled-today ((t (:background "pale turquoise" :foreground "black" :weight normal)))) | |
'(org-upcoming-deadline ((t (:background "gold" :foreground "black")))) | |
'(org-warning ((t (:background "gold" :foreground "red" :weight bold))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Package Description Version Recipe Source DLs | |
dash A modern list library for Emacs 20210826.1149 github "4,007,974" | |
magit A Git porcelain inside Emacs. 20220227.1341 github "3,263,366" | |
s The long lost Emacs string manipulation library. 20210616.619 github "3,071,022" | |
helm Helm is an Emacs incremental and narrowing framework 20220226.2016 github "2,823,492" | |
epl Emacs Package Library 20180205.2049 github "2,632,580" | |
f Modern API for working with files and directories 20210624.1103 github "2,471,330" | |
projectile Manage and navigate projects in Emacs easily 20220227.551 github "2,331,955" | |
flycheck On-the-fly syntax checking 20210825.1804 github "2,322,470" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; CUSTOM SET VARIABLES | |
;; I think maybe this should be last? | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(org-log-into-drawer t) |