diff --git a/customize.el b/customize.el index a394716..de8549e 100644 --- a/customize.el +++ b/customize.el @@ -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 diff --git a/lisp/init-functions.el b/lisp/init-functions.el index 98405cb..e5141df 100644 --- a/lisp/init-functions.el +++ b/lisp/init-functions.el @@ -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)) diff --git a/lisp/init-lsp.el b/lisp/init-lsp.el index d937240..0ffecd1 100644 --- a/lisp/init-lsp.el +++ b/lisp/init-lsp.el @@ -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 diff --git a/lisp/init-magit.el b/lisp/init-magit.el index a3c4bd9..41097bf 100644 --- a/lisp/init-magit.el +++ b/lisp/init-magit.el @@ -156,7 +156,14 @@ (setq blamer-bindings '(("" . 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