diff --git a/.emacs.d/custom.el b/.emacs.d/custom.el index c011901..9be2dd7 100644 --- a/.emacs.d/custom.el +++ b/.emacs.d/custom.el @@ -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))))) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index f29aa8d..88b316a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -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