summary refs log tree commit diff
path: root/emacs.d/inits/50_git.el
blob: 3231df1e857018915dcaa51a633b838aa860b98d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(delete 'Git vc-handled-backends)

(use-package magit
  :ensure t
  :bind ("C-x g" . magit-status)
  :config
  (progn
    (setq magit-completing-read-function 'ivy-completing-read)
    (setq magit-item-highlight-face 'bold)
    (setenv "GIT_PAGER" "")))