droidcam and magit improvements

This commit is contained in:
Andrea Ciceri 2022-04-24 13:25:23 +02:00
parent 8175759a71
commit 39521036fb
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
11 changed files with 98 additions and 5 deletions

View file

@ -41,7 +41,8 @@
("<prior>" . #'good-scroll-down-full-screen)))
(use-package rainbow-identifiers
:hook ((prog-mode . rainbow-identifiers-mode)))
;; :hook ((prog-mode . rainbow-identifiers-mode))
)
;; To move in a different config file
(when (string-equal system-type "darwin")

View file

@ -2,4 +2,17 @@
:bind (("C-x g" . magit-status)
("C-x C-g" . magit-status)))
(use-package transient
:defer t
:config
(transient-bind-q-to-quit))
(use-package diff-hl
:after magit
:config
(require 'diff-hl-flydiff)
(add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh)
(diff-hl-flydiff-mode t)
(global-diff-hl-mode t))
(provide 'config-magit)

View file

@ -16,7 +16,9 @@ in
package = pkgs.gitAndTools.gitFull;
extraConfig = {
ui.color = true;
pull.rebase = false;
rebase.autostash = true;
};
userName = config.name;