added sly stuff, + some things
This commit is contained in:
@@ -225,7 +225,7 @@ that used by the user's shell."
|
||||
(add-to-list 'org-structure-template-alist '("js" . "src javascript"))
|
||||
(add-to-list 'org-structure-template-alist '("html" . "src html"))
|
||||
(add-to-list 'org-structure-template-alist '("css" . "src css"))
|
||||
(add-to-list 'org-structure-template-alist '("rt" . "src racket")))
|
||||
(add-to-list 'org-structure-template-alist '("rt" . "src racket"))
|
||||
(add-to-list 'org-structure-template-alist '("cl" . "src lisp")))
|
||||
|
||||
;; ;; Define a function that automatically executes rymacs/org-babel-tangle-config (a wrapper around org-babel-tangle) when saving this file.
|
||||
@@ -296,6 +296,17 @@ that used by the user's shell."
|
||||
(deft-default-extension "org")
|
||||
(deft-directory org-roam-directory))
|
||||
|
||||
(after! sly
|
||||
(setq sly-lisp-implementations
|
||||
'((sbcl ("/bin/sbcl" "-L" "sbcl" "-Q" "run") :coding-system utf-8-unix)
|
||||
(clozure-cl ("/usr/local/bin/ccl64")))))
|
||||
|
||||
(defmacro define-sly-lisp (name)
|
||||
`(defun ,name () (interactive) (let ((sly-default-lisp ',name)) (sly))))
|
||||
|
||||
(define-sly-lisp sbcl)
|
||||
(define-sly-lisp ccl)
|
||||
|
||||
(use-package mu4e
|
||||
:config
|
||||
;; This is set to 't' to avoid mail syncing issues when using mbsync
|
||||
@@ -303,7 +314,7 @@ that used by the user's shell."
|
||||
|
||||
;; Refresh mail using isync every 5 minutes
|
||||
(setq mu4e-update-interval (* 5 60))
|
||||
(setq mu4e-get-mail-command "mbsync -a -c ~/Dotfiles/.config/mbsync/mbsyncrc")
|
||||
(setq mu4e-get-mail-command "mbsync -a -c ~/Dotfiles/.config/mbsyn c/mbsyncrc")
|
||||
(setq mu4e-maildir "~/Mail")
|
||||
|
||||
(setq mu4e-contexts
|
||||
|
||||
@@ -12,3 +12,4 @@ export XDG_DATA_HOME=~/.local/share
|
||||
export XDG_STATE_HOME=~/.config/zsh
|
||||
export EDITOR=nvim
|
||||
export VISUAL=nvim
|
||||
export GUIX_PROFILE="/home/ry/.config//guix/current" . "$GUIX_PROFILE/etc/profile"
|
||||
|
||||
@@ -21,12 +21,8 @@ export PATH=/home/ry/.cargo/bin:$PATH
|
||||
export PATH=/bin:$PATH
|
||||
# doom
|
||||
export PATH=~/.config/emacs/bin:$PATH
|
||||
# Go PKG BIN
|
||||
export PATH=~/code/go/bin:$PATH
|
||||
# ansible config
|
||||
export ANSIBLE_CONFIG=~/.config/ansible/ansible.cfg
|
||||
# Go PATH
|
||||
export GOPATH=~/code/go
|
||||
# GUIX PATH
|
||||
export PATH=/home/ry/.guix-profile/bin:$PATH
|
||||
|
||||
# locale --- #
|
||||
export LANG=en_US.UTF-8
|
||||
|
||||
Reference in New Issue
Block a user