diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-03-12 10:18:42 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-03-12 10:18:42 -0700 |
| commit | 8300912bb63fc3918385f9e6d2a9777f62f164a2 (patch) | |
| tree | 032c134345ac4f8ac58125453bcaeab2538f0c44 /emacs/site-lisp/coding-config.el | |
| parent | 2576f016153baa11c6e62deeb329dd72f0aa89c8 (diff) | |
firefox files and new emacs stuff
Diffstat (limited to 'emacs/site-lisp/coding-config.el')
| -rwxr-xr-x | emacs/site-lisp/coding-config.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/emacs/site-lisp/coding-config.el b/emacs/site-lisp/coding-config.el index 9d228f0..143da4c 100755 --- a/emacs/site-lisp/coding-config.el +++ b/emacs/site-lisp/coding-config.el @@ -58,10 +58,10 @@ ("C-x C-b" . ibuffer) :hook (ibuffer . (lambda () - (ibuffer-projectile-set-filter-groups) (unless (eq ibuffer-sorting-mode 'alphabetic) (ibuffer-do-sort-by-alphabetic))))) + ;; make shells and whatnot slightly better (require 'comint) (setq comint-scroll-to-bottom-on-input t) @@ -94,6 +94,7 @@ (require 'my-funcs) (add-hook 'prog-mode-hook (lambda () (hs-minor-mode 1) + (hl-todo-mode 1) (superword-mode 1) (modify-syntax-entry ?_ "w") ) (display-fill-column-indicator-mode 1) @@ -125,3 +126,9 @@ "rg -i -M 120 --no-heading --line-number --color never '%s' %s") (global-set-key (kbd "C-s") 'counsel-grep-or-swiper) (global-set-key (kbd "C-S-s") 'isearch-forward) + +;; racket +(use-package racket-mode) + +;; rust +(use-package rustic) |
