Compare commits

...

5 commits

Author SHA1 Message Date
John Doty
5de8ebdfe3 [emacs] Keybindings for deadgrep 2025-05-13 19:46:27 +00:00
John Doty
798d5ae05a [emacs] Enable thinking for claude 2025-05-13 19:46:09 +00:00
John Doty
e5b297962a [emacs] Keywords as italics is nice 2025-05-13 19:45:37 +00:00
John Doty
e112e686fc [emacs] Garbage package wrapping 2025-05-13 19:45:13 +00:00
John Doty
0ede1d3686 [emacs] flycheck-elisp should inherit path
It's what I always want
2025-05-13 19:44:41 +00:00
2 changed files with 20 additions and 9 deletions

View file

@ -27,6 +27,7 @@
'(fast-lock-minimum-size nil) '(fast-lock-minimum-size nil)
'(fill-column 77) '(fill-column 77)
'(find-file-run-dired t) '(find-file-run-dired t)
'(flycheck-emacs-lisp-load-path 'inherit)
'(flycheck-gcc-language-standard "c++11") '(flycheck-gcc-language-standard "c++11")
'(flycheck-javascript-flow-args nil) '(flycheck-javascript-flow-args nil)
'(flycheck-python-flake8-executable "python3") '(flycheck-python-flake8-executable "python3")
@ -60,9 +61,10 @@
'(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))) '(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))
'(package-check-signature nil) '(package-check-signature nil)
'(package-selected-packages '(package-selected-packages
'(adaptive-wrap add-node-modules-path ag auto-complete auto-complete-nxml '(adaptive-wrap add-node-modules-path ag async auto-complete
bazel blacken cider clang-format clipetty clojure-mode auto-complete-nxml bazel blacken cider clang-format
color-theme-monokai color-theme-sanityinc-solarized clipetty clojure-mode color-theme-monokai
color-theme-sanityinc-solarized
color-theme-sanityinc-tomorrow company company-jedi color-theme-sanityinc-tomorrow company company-jedi
company-lsp compat cquery dap-mode dap-netcore company-lsp compat cquery dap-mode dap-netcore
dash-functional deadgrep dockerfile-mode doom-themes dash-functional deadgrep dockerfile-mode doom-themes
@ -75,8 +77,8 @@
lsp-pyright lsp-ui lua-mode magit markdown-mode merlin lsp-pyright lsp-ui lua-mode magit markdown-mode merlin
mocha modus-themes monky monokai-theme multi-term mocha modus-themes monky monokai-theme multi-term
mustache-mode nyan-mode paredit popup prettier-js mustache-mode nyan-mode paredit popup prettier-js
projectile protobuf-mode python-mode request rjsx-mode ruby-mode projectile protobuf-mode python-mode request rjsx-mode
rust-mode scala-ts-mode sql-indent swift-mode ruby-mode rust-mode scala-ts-mode sql-indent swift-mode
switch-window terraform-mode thrift tide tree-sitter tss switch-window terraform-mode thrift tide tree-sitter tss
tuareg typescript-mode use-package vterm web-mode wgrep tuareg typescript-mode use-package vterm web-mode wgrep
wgsl-mode xref-js2 xterm-color yaml-mode zig-mode)) wgsl-mode xref-js2 xterm-color yaml-mode zig-mode))
@ -117,3 +119,9 @@
'(which-func-mode-global t nil (which-func)) '(which-func-mode-global t nil (which-func))
'(widget-editable-list-gui t) '(widget-editable-list-gui t)
'(x-stretch-cursor nil)) '(x-stretch-cursor nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(font-lock-keyword-face ((t (:slant italic)))))

View file

@ -1341,8 +1341,8 @@ Or, uh, Objective C, I guess."
;; ================================================================= ;; =================================================================
;; Deadgrep for searching ;; Deadgrep for searching
;; ================================================================= ;; =================================================================
(use-package deadgrep :ensure t) (use-package deadgrep :ensure t
;; TODO: AUTOLOADS HERE :bind ("C-c d" . deadgrep))
;; ================================================================= ;; =================================================================
;; Terraform ;; Terraform
@ -1427,8 +1427,11 @@ Do this when you edit your project view."
(setq (setq
gptel-model 'claude-3-7-sonnet-20250219 ; "claude-3-opus-20240229" also available gptel-model 'claude-3-7-sonnet-20250219 ; "claude-3-opus-20240229" also available
gptel-backend (gptel-make-anthropic "Claude" gptel-backend (gptel-make-anthropic "Claude"
:stream t :key #'claude-get-api-key)) :stream t
) :key #'claude-get-api-key
:request-params '(:thinking (:type "enabled" :budget_tokens 2048)
:max_tokens 4096))))
;; ================================================================= ;; =================================================================
;; Debugging ;; Debugging