| @@ -425,13 +425,13 @@ Also have the scratch buffer be empty instead of have the derp message I never r | |||
| (custom-set-variables '(initial-scratch-message nil)) | |||
| #+END_SRC | |||
| *** fonts | |||
| *** TODO fonts setup doesn't work | |||
| List of fonts in order of preference. Set preferred font list when we're in a | |||
| gui emacs session. | |||
| FIXME This doesn't loop through the gui fonts right and set based on the alist | |||
| order. | |||
| TODO is this doesn't loop through the gui fonts right and set based on the alist | |||
| order of the first matching font in macos. | |||
| #+BEGIN_SRC emacs-lisp :tangle no | |||
| (defvar my/gui-fonts | |||
| @@ -675,10 +675,12 @@ Highlight matching ()'s []'s etc... | |||
| ) | |||
| #+END_SRC | |||
| *** TODO org-mode | |||
| *** TODO org-mode capture-updates | |||
| Org-mode keybindings and settings, pretty sparse really. | |||
| Todo is to figure out what needs to happen for the capture templates. | |||
| #+BEGIN_SRC emacs-lisp | |||
| (use-package org | |||
| :ensure t | |||
| @@ -727,6 +729,10 @@ Org-mode keybindings and settings, pretty sparse really. | |||
| ) | |||
| #+END_SRC | |||
| **** TODO Org-roam testing | |||
| Figure out how the hell to use this thing. | |||
| #+BEGIN_SRC emacs-lisp | |||
| (use-package org-roam | |||
| :after org | |||
| @@ -782,7 +788,9 @@ Org-mode keybindings and settings, pretty sparse really. | |||
| ) | |||
| #+END_SRC | |||
| FIXME still need/want? | |||
| **** TODO Keep ox-latex in org setup? | |||
| Its tangle is set to no... | |||
| #+BEGIN_SRC emacs-lisp :tangle no | |||
| (require 'ox-latex) | |||
| @@ -838,12 +846,10 @@ Not tangled into the config intentionally. | |||
| (message "Error: pkg-config tool not found."))) | |||
| #+END_SRC | |||
| *** COMMENT auto-complete | |||
| *** TODO auto-complete not tangled | |||
| Auto complete functionality is nice to have. | |||
| FIXME! | |||
| #+BEGIN_SRC emacs-lisp :tangle no | |||
| (use-package auto-complete | |||
| :diminish auto-complete-mode | |||
| @@ -1228,9 +1234,9 @@ Instead of text might as well get a decent mode hook going here. | |||
| (use-package dockerfile-mode :defer t) | |||
| #+END_SRC | |||
| *** cscope | |||
| *** TODO cscope or rtags or nuke | |||
| FIXME abandon in lieu of rtags? | |||
| Switch to rtags, or maybe even nuke entirely? | |||
| #+BEGIN_SRC emacs-lisp | |||
| (use-package xcscope | |||
| @@ -1350,10 +1356,10 @@ TODO: fixme | |||
| ) | |||
| #+END_SRC | |||
| *** auto-insert-mode new file templates | |||
| *** TODO auto-insert-mode new file templates | |||
| FIXME: review if this is worth keeping around, methinks there should be | |||
| something better like yasnippet out there. | |||
| Review if this is worth keeping around, methinks there should be something | |||
| better like yasnippet out there, this is all old af hacks | |||
| Use auto-insert-mode to insert in templates for blank files. | |||