mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-24 12:26:05 -05:00
Add emacs magithub
This commit is contained in:
parent
ee44e76842
commit
440a881d22
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user