1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-24 04:22:50 -05:00

Add emacs magithub

This commit is contained in:
Jack Foltz 2018-12-21 11:54:00 -05:00
parent ee44e76842
commit 440a881d22
Signed by: foltik
GPG Key ID: D1F0331758D1F29A

View File

@ -121,6 +121,12 @@ Use fish shell in ansi-term
(foltz-apply-theme)) (foltz-apply-theme))
(load-theme spacemacs-dark)) (load-theme spacemacs-dark))
#+END_SRC #+END_SRC
** Auth storage location
Set stored auth tokens to be encrypted into emacs directory
#+BEGIN_SRC emacs-lisp
(setq auth-sources '("~/.emacs.d/authinfo.gpg"))
#+END_SRC
* Package Repo Config * Package Repo Config
** Repo Location ** Repo Location
Let's start by configuring the repositories Let's start by configuring the repositories
@ -723,6 +729,7 @@ Yasnippet adds support for custom snippets
#+END_SRC #+END_SRC
** Git ** Git
*** magit
It's magic git! It's magic git!
Keybinds [[https://github.com/emacs-evil/evil-magit][here]] Keybinds [[https://github.com/emacs-evil/evil-magit][here]]
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -737,7 +744,16 @@ Keybinds [[https://github.com/emacs-evil/evil-magit][here]]
(use-package evil-magit (use-package evil-magit
:after evil)) :after evil))
#+END_SRC #+END_SRC
*** magithub
Magic GitHub facilities for magit!
#+BEGIN_SRC emacs-lisp
(use-package magithub
:after magit
:config
(magithub-feature-autoinject t)
:custom
(magithub-clone-default-directory "~/Documents/dev"))
#+END_SRC
** Projects ** Projects
Projectile provides project-level features like Projectile provides project-level features like
make shortcuts and file switching make shortcuts and file switching