dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 600691600bca0bea8c03afc3f48a543f0ed37bc9
parent 77c26422c5dbcc205b3c3e4fe8532a8677ff9d02
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date:   Fri, 27 Mar 2026 18:54:16 +0100

emacs: config update

Diffstat:
Memacs/config.org | 13++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1744,6 +1744,10 @@ Gives ideas for phrases to use in academic writing. :config (yas-global-mode) :delight) #+end_src +** evil +#+begin_src emacs-lisp + (use-package evil) +#+end_src * Mode/language specific packages ** Org *** Custom functions @@ -3575,7 +3579,7 @@ Also, counsel doesn't provide some keybindings that I can get from helpful. #+begin_src emacs-lisp (use-package calc :config - (setq math-additional-units + (setopt math-additional-units ;; elements: ;; - symbol identifying the unit, ;; - expression indicatingv alue of unit or nil for fundamental units @@ -3603,8 +3607,11 @@ Also, counsel doesn't provide some keybindings that I can get from helpful. (Gib "1024 * Mib" "Gibibit") (Kb "1000 * b" "Kilobit") (Mb "1000 * Kb" "Megabit") - (Gb "1000 * Mb" "Gigabit"))) - (setq math-units-table nil)) + (Gb "1000 * Mb" "Gigabit") + (Kbps "Kb / s" "Kilobits per second") + (Mbps "Mb / s" "Megabits per second") + (Gbps "Gb /s" "Gigabits per second"))) + (setopt math-units-table nil)) #+end_src ** casual #+begin_src emacs-lisp