~edwargix/emacs.d

1cfa25a2cf235ad03b84aeab4965ec47dbd27ad4 — David Florness 3 years ago 4bbfd1f
Move magit configuration to its own file
3 files changed, 8 insertions(+), 8 deletions(-)

M init.el
A lisp/magit.el
M lisp/misc.el
M init.el => init.el +1 -0
@@ 26,6 26,7 @@
(load "~/.emacs.d/lisp/java")
(load "~/.emacs.d/lisp/kubernetes")
(load "~/.emacs.d/lisp/lisps")
(load "~/.emacs.d/lisp/magit")
(load "~/.emacs.d/lisp/misc")
(load "~/.emacs.d/lisp/nix")
(load "~/.emacs.d/lisp/org")

A lisp/magit.el => lisp/magit.el +7 -0
@@ 0,0 1,7 @@
;; magit: a Git Porcelain
(use-package magit
  :bind
  (("C-x g" . magit-status)
   ("C-x M-g" . magit-dispatch)
   ("C-c g b" . magit-blame)
   ("C-c g l" . magit-log)))

M lisp/misc.el => lisp/misc.el +0 -8
@@ 50,14 50,6 @@
         ("\\.markdown\\'" . markdown-mode))
  :custom (markdown-command "markdown"))

;; magit: a Git Porcelain
(use-package magit
  :bind
  (("C-x g" . magit-status)
   ("C-x M-g" . magit-dispatch)
   ("C-c g b" . magit-blame)
   ("C-c g l" . magit-log)))

;; Syntax/error checking
(use-package flycheck
  :config