|
|
@@ -78,6 +78,15 @@ Experimenting with that package. I might need to fork it in the future to add th
|
|
|
(package! pico8-mode :recipe (:host github :repo "Kaali/pico8-mode"))
|
|
|
#+end_src
|
|
|
* TODO Config variables to make stuff easily tweakable
|
|
|
+*** Powershell
|
|
|
+#+begin_src emacs-lisp
|
|
|
+(package! powershell.el :recipe (:host github :repo "jschaf/powershell.el"))
|
|
|
+#+end_src
|
|
|
+*** Wikinforg
|
|
|
+#+begin_src emacs-lisp
|
|
|
+(package! wikinfo :recipe (:host github :repo "progfolio/wikinfo"))
|
|
|
+(package! wikinforg :recipe (:host github :repo "progfolio/wikinforg"))
|
|
|
+#+end_src
|
|
|
* Helper functions
|
|
|
I had issues before dealing with specific patterns at configuration time. At
|
|
|
this moment, I don't have all the packages nor do I want to deal with them
|
|
|
@@ -358,6 +367,8 @@ kind of resource links.
|
|
|
;; (propertize (all-the-icons-faicon "file-code-o") 'face '(:foreground "red") )
|
|
|
((string-suffix-p ".pdf" link)
|
|
|
(all-the-icons-octicon "file-pdf"))
|
|
|
+ ((string-match "shadertoy\\.com" link)
|
|
|
+ (all-the-icons-fileicon "vertex-shader"))
|
|
|
((string-match "\\.cpp" link)
|
|
|
(all-the-icons-alltheicon "cplusplus"))
|
|
|
((string-match "\\.cs" link)
|
|
|
@@ -431,6 +442,7 @@ characters.
|
|
|
:localleader
|
|
|
:desc "brain" "B" nil
|
|
|
:desc "Get Id" "Bi" #'org-brain-get-id
|
|
|
+ :desc "Ensure ids" "BI" #'org-brain-ensure-ids-in-buffer
|
|
|
:desc "Visualize" "Bv" #'org-brain-visualize
|
|
|
)))
|
|
|
#+end_src
|
|
|
@@ -496,6 +508,12 @@ Here's some keybindings vaguely inspired from my experience with Spacemacs.
|
|
|
"* %U %?\n %i\n %a" :heading "Notes" :prepend t)
|
|
|
("oc" "Project changelog" entry #'+org-capture-central-project-changelog-file
|
|
|
"* %U %?\n %i\n %a" :heading "Changelog" :prepend t))))
|
|
|
+** TODO Wikinfoorg
|
|
|
+#+begin_src emacs-lisp
|
|
|
+(use-package! wikinfo
|
|
|
+ :after org)
|
|
|
+(use-package! wikinforg
|
|
|
+ :after wikinfo)
|
|
|
#+end_src
|
|
|
* Pico-8
|
|
|
Using that [[https://github.com/Kaali/pico8-mode][pico-8 mode]] for Emacs might be fun. It even includes an overlay to
|