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)
'(fill-column 77)
'(find-file-run-dired t)
'(flycheck-emacs-lisp-load-path 'inherit)
'(flycheck-gcc-language-standard "c++11")
'(flycheck-javascript-flow-args nil)
'(flycheck-python-flake8-executable "python3")
@ -60,9 +61,10 @@
'(org-todo-keywords '((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))
'(package-check-signature nil)
'(package-selected-packages
'(adaptive-wrap add-node-modules-path ag auto-complete auto-complete-nxml
bazel blacken cider clang-format clipetty clojure-mode
color-theme-monokai color-theme-sanityinc-solarized
'(adaptive-wrap add-node-modules-path ag async auto-complete
auto-complete-nxml bazel blacken cider clang-format
clipetty clojure-mode color-theme-monokai
color-theme-sanityinc-solarized
color-theme-sanityinc-tomorrow company company-jedi
company-lsp compat cquery dap-mode dap-netcore
dash-functional deadgrep dockerfile-mode doom-themes
@ -75,8 +77,8 @@
lsp-pyright lsp-ui lua-mode magit markdown-mode merlin
mocha modus-themes monky monokai-theme multi-term
mustache-mode nyan-mode paredit popup prettier-js
projectile protobuf-mode python-mode request rjsx-mode ruby-mode
rust-mode scala-ts-mode sql-indent swift-mode
projectile protobuf-mode python-mode request rjsx-mode
ruby-mode rust-mode scala-ts-mode sql-indent swift-mode
switch-window terraform-mode thrift tide tree-sitter tss
tuareg typescript-mode use-package vterm web-mode wgrep
wgsl-mode xref-js2 xterm-color yaml-mode zig-mode))
@ -117,3 +119,9 @@
'(which-func-mode-global t nil (which-func))
'(widget-editable-list-gui t)
'(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
;; =================================================================
(use-package deadgrep :ensure t)
;; TODO: AUTOLOADS HERE
(use-package deadgrep :ensure t
:bind ("C-c d" . deadgrep))
;; =================================================================
;; Terraform
@ -1427,8 +1427,11 @@ Do this when you edit your project view."
(setq
gptel-model 'claude-3-7-sonnet-20250219 ; "claude-3-opus-20240229" also available
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