update emacs configs

Amolith created

Change summary

dot_doom.d/config.org  |  5 +++++
dot_doom.d/init.el     | 16 ++++++++--------
dot_doom.d/packages.el |  1 +
3 files changed, 14 insertions(+), 8 deletions(-)

Detailed changes

dot_doom.d/config.org 🔗

@@ -262,6 +262,11 @@ Look for various executables
 (add-hook 'sclang-mode-hook 'sclang-extensions-mode)
 #+END_SRC
 
+** TidalCycles
+#+BEGIN_SRC emacs-lisp
+(setq tidal-boot-script-path "/usr/share/x86_64-linux-ghc-9.0.2/tidal-1.7.10/BootTidal.hs")
+#+END_SRC
+
 ** Tree-sitter
 #+BEGIN_SRC emacs-lisp
 (global-tree-sitter-mode)

dot_doom.d/init.el 🔗

@@ -34,11 +34,11 @@
        ;;(emoji +unicode)  ; 🙂
        hl-todo           ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
        ;;hydra
-       ;;indent-guides     ; highlighted indent columns
+       indent-guides     ; highlighted indent columns
        ;;ligatures         ; ligatures and symbols to make your code pretty again
-       ;;minimap           ; show a map of the code on the side
+       minimap           ; show a map of the code on the side
        modeline          ; snazzy, Atom-inspired modeline, plus API
-       ;;nav-flash         ; blink cursor line after big motions
+       nav-flash         ; blink cursor line after big motions
        ;;neotree           ; a project drawer, like NERDTree for vim
        ophints           ; highlight the region an operation acts on
        (popup +defaults)   ; tame sudden yet inevitable temporary windows
@@ -49,7 +49,7 @@
        vi-tilde-fringe   ; fringe tildes to mark beyond EOB
        ;;window-select     ; visually switch windows
        workspaces        ; tab emulation, persistence & separate workspaces
-       ;;zen               ; distraction-free coding or writing
+       zen               ; distraction-free coding or writing
 
        :editor
        (evil +everywhere); come to the dark side, we have cookies
@@ -58,7 +58,7 @@
        (format +onsave)  ; automated prettiness
        ;;god               ; run Emacs commands without modifier keys
        ;;lispy             ; vim for lisp, for people who don't like vim
-       ;;multiple-cursors  ; editing in many places at once
+       multiple-cursors  ; editing in many places at once
        ;;objed             ; text object editing for the innocent
        ;;parinfer          ; turn lisp into python, sort of
        ;;rotate-text       ; cycle region at point between text candidates
@@ -173,9 +173,9 @@
        zig               ; C, but simpler
 
        :email
-       (mu4e +org)
-       notmuch
-       wanderlust
+       mu4e
+       ;;notmuch
+       ;;wanderlust
 
        :app
        calendar

dot_doom.d/packages.el 🔗

@@ -21,6 +21,7 @@
 (package! tree-sitter)
 (package! tree-sitter-langs)
 (package! writeroom-mode)
+(package! tidal)
 
 ;; To install a package directly from a remote git repo, you must specify a
 ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: