fix kab, upd magit config

This commit is contained in:
2026-08-17 11:24:05 +02:00
parent f94826d8cc
commit f246281bc4
4 changed files with 30 additions and 6 deletions

View File

@@ -11,7 +11,20 @@
'("7f1d414afda803f3244c6fb4c2c64bea44dac040ed3731ec9d75275b9e831fe5"
default))
'(magit-todos-insert-after '(bottom) nil nil "Changed by setter of obsolete option `magit-todos-insert-at'")
'(package-selected-packages nil)
'(package-selected-packages
'(beacon blamer browse-kill-ring buffer-move change-inner consult-dir
corfu csv-mode d2-mode default-text-scale dictcc
dired-filter dired-k dired-ranger dumb-jump elmacro
elvish-mode embark-consult ement fic-mode forge
fringe-current-line go-mode goto-last-change
hide-mode-line highlight-indentation htmlize hungry-delete
ibuffer-tramp ibuffer-vc iedit loccur lsp-treemacs lsp-ui
lua-mode magit-todos marginalia orderless org-bullets
org-present org-superstar orgalist persistent-scratch
perspective projectile rust-mode smartparens
solarized-theme sqlite3 swiper tablist typst-ts-mode
undo-tree vertico visual-fill-column vterm web-mode
windresize yaml-mode))
'(safe-local-variable-values '((ruby-indent-level 4)))
'(warning-suppress-types '((comp))))
(custom-set-faces

View File

@@ -348,7 +348,7 @@ Version 2015-04-09"
(global-set-key (kbd "C-c C-p") 'copy-buffer-read-only) ; make read-only buffer copy
;; --------------------------------------------------------------------------------
;; ** Cleanup, close all windows and kill all buffers
;; ** Cleanup, close all windows and kill all buffers and processes
;; From time to time I get annoyed by the many dozen buffers
;; opened. In such cases I like to close them all at once.
@@ -364,6 +364,8 @@ Version 2015-04-09"
(clean-buffer-list)
(dolist (buffer (buffer-list))
(kill-buffer buffer))
(dolist (process (list-processes))
(kill-process process))
(delete-minibuffer-contents)
(if (fboundp 'tramp-cleanup-all-connections)
(tramp-cleanup-all-connections))

View File

@@ -55,10 +55,10 @@
("C-c D" . tvd-lsp-doc-toggle))
:init
(setq lsp-ui-doc-enable t ;; enable on the fly with "C-c D"
(setq lsp-ui-doc-enable nil ;; enable on the fly with "C-c D"
lsp-ui-doc-use-webkit nil
lsp-ui-doc-header t
lsp-ui-doc-delay 0.2
lsp-ui-doc-delay 1.0
lsp-ui-doc-position 'top
lsp-ui-doc-side 'right
lsp-ui-doc-include-signature t
@@ -72,7 +72,7 @@
lsp-ui-peek-peek-height 40
;; FIXME: maybe this is too much, check at work
lsp-ui-sideline-enable t
lsp-ui-sideline-enable nil
lsp-ui-sideline-update-mode 'point
lsp-ui-sideline-show-code-actions nil
lsp-ui-sideline-show-hover t

View File

@@ -156,7 +156,14 @@
(setq blamer-bindings '(("<mouse-1>" . blamer-callback-show-commit-diff))))
(use-package forge
:after magit)
:after magit
:config
(push '("git.f-i-ts.de" ; GITHOST
"git.f-i-ts.de/api/v4" ; APIHOST
"git.f-i-ts.de" ; WEBHOST and INSTANCE-ID
forge-gitlab-repository) ; CLASS
forge-alist))
(use-package sqlite3
:defer nil)
@@ -190,5 +197,7 @@
(interactive)
(tvd-switch-to-repo (completing-read "select git repo> " (tvd-list-git-repos))))
(setq auth-sources '("~/.authinfo"))
(provide 'init-magit)
;;; init-magit.el ends here