From 766e6808b5ee6122ab3abae1c4ab6b53162242e4 Mon Sep 17 00:00:00 2001 From: Petr Nyc Date: Mon, 8 Dec 2025 08:57:11 +0100 Subject: [PATCH] update --- .spacemacs | 46 +++++++++++++++++++++++++++-------------- bin/ul11u4_build.sh | 4 ++-- bin/ul11u4_gate_open.sh | 2 +- 3 files changed, 33 insertions(+), 19 deletions(-) diff --git a/.spacemacs b/.spacemacs index 367d585..7f5751d 100644 --- a/.spacemacs +++ b/.spacemacs @@ -36,7 +36,7 @@ This function should only modify configuration layer settings." multiple-cursors ;; https://www.spacemacs.org/layers/+misc/multiple-cursors/README.html#key-bindings shell yaml - themes-megapack + ;; themes-megapack nginx toml html @@ -48,7 +48,6 @@ This function should only modify configuration layer settings." ;; Uncomment some layer names and press `SPC f e R' (Vim style) or ;; `M-m f e R' (Emacs style) to install them. ;; ---------------------------------------------------------------- - auto-completion (auto-completion :variables auto-completion-enable-snippets-in-popup t auto-completion-enable-help-tooltip t @@ -60,8 +59,6 @@ This function should only modify configuration layer settings." helm lsp markdown - multiple-cursors - org (org :variables org-enable-bootstrap-support t org-enable-jira-support t @@ -99,6 +96,7 @@ This function should only modify configuration layer settings." org-alert ;org-caldav ;org-protocol + aidermacs ) ;; A list of packages that cannot be updated. @@ -864,7 +862,7 @@ before packages are loaded." '((sequence "TODO(t)" "NEXT(n)" "WAIT(w)" "RUNNING(r)" "|" "DONE(d)" "CANCELLED(c)" ))) (setq org-clock-out-remove-zero-time-clocks t) - ) ;; with-eval-after-load + ) ;; with-eval-after-load 'org (with-eval-after-load 'markdown-mode (define-key markdown-mode-map (kbd "C-c x") 'my/markdown-toggle-checkbox)) @@ -884,6 +882,22 @@ before packages are loaded." ) (org-alert-enable)) + (use-package aidermacs + :defer t ;; Lazy load until invoked + :init + ;; Set variables here so they are ready before the package loads + (setq aidermacs-default-chat-mode 'architect + aidermacs-default-model "oca/gpt5" + aidermacs-backend 'vterm ;; Highly recommended for Spacemacs/Mac users over comint + aidermacs-program "/opt/homebrew/bin/ocaider") + :config + ;; Optional: Spacemacs-style keybindings (Leader key) + ;; Mnemonic: SPC a (apps) i (intelligence/aider) + (spacemacs/set-leader-keys + "ai" 'aidermacs-transient-menu) + ) + + (defun my/markdown-toggle-checkbox () "Toggle checkbox in markdown list at point." (interactive) @@ -894,7 +908,7 @@ before packages are loaded." (if (string= (match-string 1) " ") "x" " ") nil nil nil 1)))) - (setq warning-minimum-level :error) + ;; (setq warning-minimum-level :error) ;; 28.4. - terminal clipboard integration @@ -1071,9 +1085,9 @@ before packages are loaded." ;; auto-generate custom variable definitions. (defun dotspacemacs/emacs-custom-settings () "Emacs custom settings. - This is an auto-generated function, do not modify its content directly, use - Emacs customize menu instead. - This function is called at the very end of Spacemacs initialization." +This is an auto-generated function, do not modify its content directly, use +Emacs customize menu instead. +This function is called at the very end of Spacemacs initialization." (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -1087,7 +1101,7 @@ before packages are loaded." "bbb13492a15c3258f29c21d251da1e62f1abb8bbd492386a673dcfab474186af" "7fd8b914e340283c189980cd1883dbdef67080ad1a3a9cc3df864ca53bdc89cf" default)) '(package-selected-packages - '(a ace-jump-helm-line ace-link afternoon-theme aggressive-indent aio + '(a ace-jump-helm-line ace-link afternoon-theme aggressive-indent aidermacs aio alect-themes alert all-the-icons ample-theme ample-zen-theme anaconda-mode anti-zenburn-theme apropospriate-theme auto-compile auto-highlight-symbol auto-yasnippet autothemer badwolf-theme @@ -1097,12 +1111,12 @@ before packages are loaded." color-theme-sanityinc-solarized color-theme-sanityinc-tomorrow column-enforce-mode company company-anaconda company-box company-quickhelp company-shell company-statistics company-terraform - company-web concurrent ctable cyberpunk-theme cython-mode dakrone-theme - dap-mode darkmine-theme darkokai-theme darktooth-theme deferred - define-word devdocs diminish dired-quick-sort disable-mouse django-theme - docker dockerfile-mode doom-themes dotenv-mode dracula-theme drag-stuff - dumb-jump eat edit-indirect editorconfig ef-themes elisp-def elisp-demos - elisp-slime-nav emacsql emmet-mode emojify emr epc esh-help + company-web concurrent cond-let ctable cyberpunk-theme cython-mode + dakrone-theme dap-mode darkmine-theme darkokai-theme darktooth-theme + deferred define-word devdocs diminish dired-quick-sort disable-mouse + django-theme docker dockerfile-mode doom-themes dotenv-mode dracula-theme + drag-stuff dumb-jump eat edit-indirect editorconfig ef-themes elisp-def + elisp-demos elisp-slime-nav emacsql emmet-mode emojify emr epc esh-help eshell-prompt-extras eshell-z espresso-theme eval-sexp-fu evil-anzu evil-args evil-cleverparens evil-collection evil-easymotion evil-escape evil-evilified-state evil-exchange evil-goggles evil-iedit-state diff --git a/bin/ul11u4_build.sh b/bin/ul11u4_build.sh index 025ffea..b89a747 100755 --- a/bin/ul11u4_build.sh +++ b/bin/ul11u4_build.sh @@ -12,8 +12,8 @@ AWK=/usr/bin/awk CURL=/usr/bin/curl source "${BINDIR}/lib/logging.sh" -TARGET="${1-11.4.85.0.1.201.2}" -hg_branch="s11u4_sust_084" +TARGET="${1-11.4.88.0.1.207.1}" +hg_branch="s11u4_sust_087" log::info "TARGET:${TARGET}" URL="http://grt.us.oracle.com/grt/webservice/grtList/?gate=240&show=All&gateName=S11.4-SRU&status=4&target=${TARGET}" diff --git a/bin/ul11u4_gate_open.sh b/bin/ul11u4_gate_open.sh index 442dbb8..5180f8b 100755 --- a/bin/ul11u4_gate_open.sh +++ b/bin/ul11u4_gate_open.sh @@ -13,7 +13,7 @@ CURL=/usr/bin/curl source "${BINDIR}/lib/logging.sh" -TARGET="${1-11.4.87.0.1.207.2}" +TARGET="${1-11.4.88.0.1.207.1}" log::info "TARGET:${TARGET}"