Configure treemacs
Some checks failed
/ Test config on 20 (push) Failing after 51s

This commit is contained in:
Maciej 2025-10-28 12:14:01 +02:00
parent 2ef1340e6c
commit b10acede86
Signed by: maciej
GPG key ID: 28243AF437E32F99
5 changed files with 13 additions and 7 deletions

View file

@ -26,4 +26,8 @@
(time-subtract after-init-time before-init-time))) (time-subtract after-init-time before-init-time)))
gcs-done))) gcs-done)))
;; set path for native compilation to work
(setenv "PATH" "/Users/maciej/.local/share/zinit/polaris/bin:/Users/maciej/.asdf/shims:/Users/maciej/.local/bin:/Users/maciej/.opam/default/bin:/Users/maciej/.go/bin:/Users/maciej/.elan/bin:/opt/homebrew/opt/postgresql@17/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/usr/local/MacGPG2/bin:/usr/local/share/dotnet:/Users/maciej/.dotnet/tools:/Applications/Postgres.app/Contents/Versions/latest/bin:/Applications/kitty.app/Contents/MacOS")
(setq exec-path (split-string (getenv "PATH") path-separator))
;;; early-init.el ends here ;;; early-init.el ends here

View file

@ -1,4 +1,4 @@
;;; icejam-aider.el --- summary ;;; icejam-aider.el --- summary -*- lexical-binding: t; -*-
;; Author: Maciej Szlosarczyk ;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk ;; Maintainer: Maciej Szlosarczyk
@ -56,10 +56,10 @@
:config :config
;; (setenv "OLLAMA_API_BASE" "http://127.0.0.1:11434") ;; (setenv "OLLAMA_API_BASE" "http://127.0.0.1:11434")
(setenv "OLLAMA_API_BASE" "http://192.168.88.13:11434") (setenv "OLLAMA_API_BASE" "http://192.168.88.13:11434")
(setopt aidermacs-use-architect-mode t) (setopt aidermacs-default-chat-mode 'architect)
(setopt aidermacs-default-model "ollama_chat/qwen2.5-coder:32b") (setopt aidermacs-default-model "ollama_chat/qwen3-coder:30b")
(setopt aider-extra-args (list "--model" (setopt aider-extra-args (list "--model"
"ollama_chat/qwen2.5-coder:32b" "ollama_chat/qwen3-coder:30b"
"--no-auto-commits" "--no-auto-commits"
"--no-analytics" "--no-analytics"
"--no-gitignore"))) "--no-gitignore")))

View file

@ -135,7 +135,8 @@
(elpaca-after-init . treemacs-project-follow-mode)) (elpaca-after-init . treemacs-project-follow-mode))
:commands (treemacs-follow-mode treemacs-project-follow-mode treemacs) :commands (treemacs-follow-mode treemacs-project-follow-mode treemacs)
:bind (:map icejam-keys-mode-map :bind (:map icejam-keys-mode-map
([(hyper b)] . treemacs))) ([(hyper b)] . treemacs))
:config (setopt treemacs-tag-follow-delay 1.0))
(use-package treemacs-all-the-icons :ensure t :defer t (use-package treemacs-all-the-icons :ensure t :defer t
:requires (treemacs) :requires (treemacs)

View file

@ -128,7 +128,7 @@
(use-package icejam-lang-haskell :ensure nil) (use-package icejam-lang-haskell :ensure nil)
(use-package icejam-lang-javascript :ensure nil) (use-package icejam-lang-javascript :ensure nil)
(use-package icejam-lang-kotlin :ensure nil) (use-package icejam-lang-kotlin :ensure nil)
(use-package icejam-lang-lean :ensure nil) ;; (use-package icejam-lang-lean :ensure nil)
(use-package icejam-lang-lua :ensure nil) (use-package icejam-lang-lua :ensure nil)
(use-package icejam-lang-markdown :ensure nil) (use-package icejam-lang-markdown :ensure nil)
(use-package icejam-lang-ocaml :ensure nil) (use-package icejam-lang-ocaml :ensure nil)

View file

@ -15,7 +15,8 @@
:ensure t :ensure t
:defer t :defer t
:after (rust-mode) :after (rust-mode)
:config (setopt rustic-format-on-save nil)) :config (setopt rustic-format-on-save nil)
(setopt rustic-lsp-client 'eglot))
(use-package flycheck-rust (use-package flycheck-rust
:ensure t :ensure t