From c1229075fbed30c7dcffc84e7ca11c2191dda11b Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Thu, 30 Jul 2026 21:48:05 -0400 Subject: more fixes to make it actually actually work --- .config/emacs/early-init.el | 4 ++-- .config/emacs/files.el | 2 ++ .config/emacs/lisp/proj | 2 +- .config/emacs/minibuffer.el | 2 +- .config/emacs/style.el | 2 +- .config/emacs/text-editing.el | 3 +++ 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.config/emacs/early-init.el b/.config/emacs/early-init.el index b8c27fb..dd27ef2 100644 --- a/.config/emacs/early-init.el +++ b/.config/emacs/early-init.el @@ -39,10 +39,10 @@ (set-selection-coding-system 'utf-8) (prefer-coding-system 'utf-8) -;; fonts +;; fonts - https://github.com/thep0y/monaco-nerd-font/releases/tag/v0.2.2 (let ((mono-spaced-font "Monaco Nerd Font Mono") (proportionately-spaced-font "MonacoLigaturized Nerd Font")) - (set-face-attribute 'default nil :family mono-spaced-font :height 100) + (set-face-attribute 'default nil :family mono-spaced-font :height 105) (set-face-attribute 'fixed-pitch nil :family mono-spaced-font :height 1.0) (set-face-attribute 'variable-pitch nil :family proportionately-spaced-font :height 1.0)) diff --git a/.config/emacs/files.el b/.config/emacs/files.el index a60c5e5..4b55523 100644 --- a/.config/emacs/files.el +++ b/.config/emacs/files.el @@ -24,3 +24,5 @@ (dired-subtree-after-insert . nerd-icons-dired--refresh) :config (setq dired-subtree-use-backgrounds nil)) + +;; todo - make auto revert buffer actually work with subtree diff --git a/.config/emacs/lisp/proj b/.config/emacs/lisp/proj index fd3d705..847a203 160000 --- a/.config/emacs/lisp/proj +++ b/.config/emacs/lisp/proj @@ -1 +1 @@ -Subproject commit fd3d705c32fc8e35e7f80d75c35fd950749a6e9e +Subproject commit 847a20360c7ef1affc730c6d8d626f923fe5894c diff --git a/.config/emacs/minibuffer.el b/.config/emacs/minibuffer.el index 7a90e85..b7b13af 100644 --- a/.config/emacs/minibuffer.el +++ b/.config/emacs/minibuffer.el @@ -58,7 +58,7 @@ :ensure t :custom (prescient-aggressive-file-save t) - (prescient-sort-length-enable nil) + (prescient-sort-length-enable t) ; testing this out (prescient-sort-full-matches-first t) (prescient-history-length 200) (prescient-frequency-decay 0.997) diff --git a/.config/emacs/style.el b/.config/emacs/style.el index 69a99a0..5141cd8 100644 --- a/.config/emacs/style.el +++ b/.config/emacs/style.el @@ -4,7 +4,7 @@ ;; theme (load-theme 'wombat) (custom-set-faces - '(default ((t (:inherit nil :stipple nil :background "#222323" :foreground "#f6f3e8" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 115 :width normal :family "Monaco")))) + '(default ((t (:inherit nil :stipple nil :background "#222323" :foreground "#f6f3e8" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 115 :width normal)))) '(highlight ((t (:underline nil)))) '(fringe ((t (:background "#222323")))) '(vertical-border ((t (:foreground "#303030")))) diff --git a/.config/emacs/text-editing.el b/.config/emacs/text-editing.el index beee68c..48f07c5 100644 --- a/.config/emacs/text-editing.el +++ b/.config/emacs/text-editing.el @@ -16,15 +16,18 @@ ;; mwim (use-package mwim + :ensure t :bind (("C-a" . mwim-beginning) ("C-e" . mwim-end-of-line))) ;; expand keybind (use-package expand-region + :ensure t :bind ("C-=" . er/expand-region)) ;; better comment keybind (use-package evil-nerd-commenter + :ensure t :bind ("M-;" . evilnc-comment-or-uncomment-lines)) ;; delete selected region when you type new text -- cgit v1.2.3