droidcam
and magit
improvements
This commit is contained in:
parent
8175759a71
commit
39521036fb
11 changed files with 98 additions and 5 deletions
|
@ -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")
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -16,7 +16,9 @@ in
|
|||
package = pkgs.gitAndTools.gitFull;
|
||||
|
||||
extraConfig = {
|
||||
ui.color = true;
|
||||
pull.rebase = false;
|
||||
rebase.autostash = true;
|
||||
};
|
||||
|
||||
userName = config.name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue