slightly tweaked emacs config; new snippets

This commit is contained in:
William Ball 2026-03-30 18:44:40 -04:00
parent 014a3f897e
commit 6e4a38e58f
Signed by: wball
SSH key fingerprint: SHA256:3K3IvjUp1U5HwsIRYy/vosnG8l/A84LPUSAKQ6oCGKI

View file

@ -16,6 +16,9 @@
(fset 'yes-or-no-p 'y-or-n-p) (fset 'yes-or-no-p 'y-or-n-p)
(setq default-frame-alist '((undecorated . t))) (setq default-frame-alist '((undecorated . t)))
(scroll-bar-mode -1) (scroll-bar-mode -1)
; get rid of that stupid popup
(setq native-comp-async-report-warnings-errors 'silent)
#+end_src #+end_src
** Backups ** Backups
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -412,6 +415,9 @@ I don't really use markdown ([[Org Mode]] is a strict improvement imo), but it's
"NN" "\\N" "NN" "\\N"
"ZZ" "\\Z" "ZZ" "\\Z"
"QQ" "\\Q" "QQ" "\\Q"
"rt" "\\upharpoonright"
"bt" "\\bullet"
"'d" "^\\bullet"
"oo" "\\circ" "oo" "\\circ"
"RR" "\\R" "RR" "\\R"
"CC" "\\C" "CC" "\\C"
@ -425,7 +431,6 @@ I don't really use markdown ([[Org Mode]] is a strict improvement imo), but it's
"s=" "\\subseteq" "s=" "\\subseteq"
"s<" "\\subset" "s<" "\\subset"
"invs" "^{-1}" "invs" "^{-1}"
"opl" "\\oplus"
"td" (lambda () (interactive) "td" (lambda () (interactive)
(yas-expand-snippet "^{$1}$0")) (yas-expand-snippet "^{$1}$0"))
"__" (lambda () (interactive) "__" (lambda () (interactive)
@ -439,6 +444,8 @@ I don't really use markdown ([[Org Mode]] is a strict improvement imo), but it's
I use [[https://abode.karthinks.com/org-latex-preview/][this]] fork of org-mode in order to have amazing latex previews. /Make sure to follow the installation instructions!/ It's supposed to eventually be merged into org proper, which is very exciting. I'm already pretty dependent on this feature (the previews are just that good), so I'll have to use this until it gets merged, but that's fine with me. I use [[https://abode.karthinks.com/org-latex-preview/][this]] fork of org-mode in order to have amazing latex previews. /Make sure to follow the installation instructions!/ It's supposed to eventually be merged into org proper, which is very exciting. I'm already pretty dependent on this feature (the previews are just that good), so I'll have to use this until it gets merged, but that's fine with me.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package org-mode (use-package org-mode
:vc (:url "https://code.tecosaur.net/tec/org-mode"
:branch "dev")
:load-path "~/dotfiles/emacs/.config/emacs/elpa/org-mode/lisp/" :load-path "~/dotfiles/emacs/.config/emacs/elpa/org-mode/lisp/"
:init :init
(setq org-list-allow-alphabetical t) (setq org-list-allow-alphabetical t)