Fixed transient blocking magit install.

This commit is contained in:
Micheal Smith
2026-01-31 11:34:09 -06:00
parent 79e0e7e405
commit 29d74bbd79
7 changed files with 30 additions and 26 deletions

View File

@@ -118,7 +118,7 @@ and descriptive.
function completing-read.
#+end_quote
Think about this as a tightly integrate search that can tie into many aspects
Think about this as a tightly integrated search that can tie into many aspects
of a project, and convey the results to various completion facilities.
#+begin_src emacs-lisp

View File

@@ -12,7 +12,9 @@ breeze.
:ensure t
:init
(setq parinfer-rust-auto-download t)
:hook (emacs-lisp-mode . parinfer-rust-mode))
:hook
emacs-lisp-mode
clojure-ts-mode)
#+end_src
I also have =smart-parens= for parentheses matching in modes where =parinfer= would

View File

@@ -119,4 +119,7 @@ There are a lot of solutions for editing files, and projects remotely. At the m
(setq tramp-verbose 0)
(setq tramp-chunksize 2000)
(setq tramp-copy-size-limit nil))
(defun tramp-set-remote-path ()
(add-to-list 'tramp-remote-path 'tramp-own-remote-path))
#+end_src

View File

@@ -19,7 +19,9 @@ the package.
(clojure-ts-mode . lsp-deferred)
(elixir-ts-mode . lsp-deferred)
(gleam-ts-mode . lsp-deferred)
(go-ts-mode . lsp-deferred)
(python-ts-mode . lsp-deferred)
(ruby-ts-mode . lsp-deferred)
(rust-ts-mode . lsp-deferred)
(slint-mode . lsp-deferred)
(toml-ts-mode . lsp-deferred)

View File

@@ -33,12 +33,11 @@ bother with an explanation on each.
(setq-local treesit-primary-parser 'c)))
;; Clojure
(use-package clojure-ts-mode
(use-package clojure-mode
:ensure t
:after (rainbox-mode)
:hook
((clojure-ts-mode . cider-mode)
(clojure-ts-mode . rainbow-delimiters-mode)))
cider-mode)
;; Gleam
(use-package gleam-ts-mode
@@ -48,14 +47,6 @@ bother with an explanation on each.
:ensure t
:defer t)
(use-package inf-elixir
:defer t)
;; Go
(use-package go-mode
:demand t
:mode "\\.go\\'")
;; Meson
(use-package meson-mode
:demand t

View File

@@ -5,8 +5,12 @@ choice is [[https://magit.vc/][Magit]]. I've kept the configuration pretty mini
forge support really.
#+begin_src emacs-lisp
(use-package transient
:defer t)
(use-package magit
:defer t
:after (transient)
:bind (("C-c M" . magit-dispatch))
:custom
(magit-repository-directories (list (cons elpaca-repos-directory 1)))