diff --git a/init.el b/init.el index a57e716..687885f 100644 --- a/init.el +++ b/init.el @@ -54,7 +54,6 @@ (require 'init-org) (require 'init-tex) -;; (require 'init-markdown) (require 'init-cc) (require 'init-python) (require 'init-haskell) diff --git a/lisp/init-llm.el b/lisp/init-llm.el index 69b4889..186c157 100644 --- a/lisp/init-llm.el +++ b/lisp/init-llm.el @@ -5,7 +5,7 @@ :bind (("C-c l s" . gptel-send) ("C-c l m" . gptel-menu)) :config - (setq gptel-model 'gpt-5.2-codex) + (setq gptel-model 'gpt-5.2) (setq gptel-backend (gptel-make-gh-copilot "Copilot")) (setq gptel-default-mode #'org-mode) (setq gptel-display-buffer-action nil) ; if user changes this, popup manager will bow out diff --git a/lisp/init-utils.el b/lisp/init-utils.el index ebf7ccd..2ac1a31 100644 --- a/lisp/init-utils.el +++ b/lisp/init-utils.el @@ -30,19 +30,6 @@ (which-key-add-key-based-replacements "C-x t" "tabs") (which-key-add-key-based-replacements "C-x v" "version control")) -;; (use-package grep -;; :ensure nil -;; :autoload grep-apply-setting -;; :init -;; (grep-apply-setting -;; 'grep-command "rg --color=auto --null -nH --no-heading -e ") -;; (grep-apply-setting -;; 'grep-template "rg --color=auto --null --no-heading -g '!*/' -e ") -;; (grep-apply-setting -;; 'grep-find-command '("rg --color=auto --null -nH --no-heading -e ''" . 38)) -;; (grep-apply-setting -;; 'grep-find-template "rg --color=auto --null -nH --no-heading -e ")) - ;; Writable grep buffer (use-package wgrep :init (setq wgrep-auto-save-buffer t @@ -61,14 +48,6 @@ (rg-enable-default-bindings) ) -;; (use-package sudo-edit -;; :commands sudo-edit sudo-edit-find-file -;; :bind ("C-c C-r" . sudo-edit)) - -;; (use-package keycast -;; :hook (elpaca-after-init . keycast-mode-line-mode) -;; :config -;; (setq keycast-mode-line-remove-tail-elements nil)) (use-package elcord)