From 5df6c5aecfdf4ea498b068cdd528faddc22aa8f7 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 31 Dec 2024 20:31:43 -0700 Subject: [PATCH] [Emacs] Use new version of org-mode branch --- dotfiles/emacs.d/README.org | 36 ++++++++++++++++++------------------ dotfiles/emacs.d/init.el | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 82aca928..cf19ae3f 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -2247,26 +2247,26 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab #+END_SRC * flycheck #+BEGIN_SRC emacs-lisp - (use-package flycheck - :commands flycheck-mode - :init (add-hook 'prog-mode-hook 'flycheck-mode) - :config - (progn - (use-package flycheck-package - :disabled t - :config (flycheck-package-setup)) +(use-package flycheck + :commands flycheck-mode + :init (add-hook 'prog-mode-hook 'flycheck-mode) + :config + (progn + (use-package flycheck-package + :disabled t + :config (flycheck-package-setup)) - (use-package flycheck-cask - :after flycheck - :config - (add-hook 'flycheck-mode-hook #'flycheck-cask-setup)) + (use-package flycheck-cask + :after flycheck + :config + (add-hook 'flycheck-mode-hook #'flycheck-cask-setup)) - (add-to-list 'flycheck-emacs-lisp-checkdoc-variables - 'sentence-end-double-space) - (setq-default flycheck-disabled-checkers '(rust-cargo rust rust-clippy)) - (setq flycheck-display-errors-delay 10000) - (global-flycheck-mode)) - :diminish flycheck-mode) + (add-to-list 'flycheck-emacs-lisp-checkdoc-variables + 'sentence-end-double-space) + (setq-default flycheck-disabled-checkers '(rust-cargo rust rust-clippy)) + (setq flycheck-display-errors-delay 10000) + (global-flycheck-mode)) + :diminish flycheck-mode) #+END_SRC * straight #+BEGIN_SRC emacs-lisp diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 3795c87c..25cd7860 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -66,7 +66,7 @@ (use-package org :straight (org :type git :host github :repo "colonelpanic8/org-mode" :local-repo "org" - :branch "my-main" + :branch "my-main-2025" :depth full :pre-build (straight-recipes-org-elpa--build) :build (:not autoloads) :files (:defaults "lisp/*.el" ("etc/styles/" "etc/styles/*")))