Skip to content

Commit

Permalink
chore: misc
Browse files Browse the repository at this point in the history
  • Loading branch information
yqrashawn committed Mar 3, 2025
1 parent 4cae4fb commit 6a1badf
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .doom.d/custom.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(safe-local-variable-values
'((lsp-sqls-workspace-config-path . "root")
(+cider-project-reload-exec-cmd-clj . "(user/x)")
(cider-clojure-cli-aliases . ":dev")
(cider-shadow-watched-builds . ":app"))))
'((cider-clojure-cli-aliases . ":dev:test")
(lsp-sqls-workspace-config-path . "root")
(+cider-project-reload-exec-cmd-clj . "(user/x)")
(cider-clojure-cli-aliases . ":dev")
(cider-shadow-watched-builds . ":app"))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
Expand Down
4 changes: 2 additions & 2 deletions .doom.d/prog.el
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ Each file is opened (if not already) with `find-file-noselect` relative to the c
:defer t
:init
(setq!
;; copilot-chat-model "claude-3.5-sonnet"
copilot-chat-model "o3-mini"
copilot-chat-model "claude-3.7-sonnet"
;; copilot-chat-model "o3-mini"
copilot-chat-frontend 'org)
(add-hook! '(copilot-chat-mode-hook copilot-chat-prompt-mode-hook)
(defun +turn-off-languagetool-for-copilot-chat-buffers ()
Expand Down
5 changes: 5 additions & 0 deletions .doom.d/snippets/clojurescript-mode/js_location.href
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: js/location.href
# key: href
# --
js/location.href
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@
url = "github:cheetah/asdf-zig";
flake = false;
};
asdf-foundry = {
url = "github:foundry-rs/asdf-starknet-foundry";
flake = false;
};
asdf-ninja = {
url = "github:asdf-community/asdf-ninja";
flake = false;
Expand Down
1 change: 1 addition & 0 deletions modules/yqrashawn/darwin/preferences.nix
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ in {
fi
if [ ! -e ~/.config/nyxt/config.lisp ]; then
echo 'link ~/.config/nyxt/config.lisp'
mkdir -p ~/.config/nyxt
ln -s ~/.nixpkgs/modules/yqrashawn/home-manager/dotfiles/nyxt.lisp ~/.config/nyxt/config.lisp
fi
'';
Expand Down
5 changes: 5 additions & 0 deletions modules/yqrashawn/home-manager/dotfiles/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,11 @@
target = "./.asdf/plugins/zig";
recursive = true;
};
asdf-foundry = {
source = inputs.asdf-foundry;
target = "./.asdf/plugins/foundry";
recursive = true;
};
asdf-babashka = {
source = inputs.asdf-babashka;
target = "./.asdf/plugins/babashka";
Expand Down

0 comments on commit 6a1badf

Please sign in to comment.