move stuff around
This commit is contained in:
parent
052469ae12
commit
61bc58a5f1
@ -1722,13 +1722,33 @@ I use helm for almost all emacs completion
|
|||||||
:config
|
:config
|
||||||
:init (add-hook 'magit-status-mode-hook 'magit-filenotify-mode))))
|
:init (add-hook 'magit-status-mode-hook 'magit-filenotify-mode))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** gist
|
*** github-search
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package gist
|
(defvar imalison:github-search-load-path
|
||||||
:commands (gist-region gist-region-private gist-buffer gist-buffer-private
|
(imalison:join-paths imalison:projects-directory "github-search"))
|
||||||
gist-region-or-buffer gist-region-or-buffer-private
|
(use-package github-search
|
||||||
gist-list-user gist-list gist-fetch gist-star
|
:ensure nil
|
||||||
gist-unstar gist-list-starred gist-fork))
|
:load-path imalison:github-search-load-path
|
||||||
|
:commands (github-search-clone-repo github-search-user-clone-repo)
|
||||||
|
:preface
|
||||||
|
(progn
|
||||||
|
(defun imalison:get-projects-directory-target-from-repo (repo)
|
||||||
|
(let ((prospective-path
|
||||||
|
(imalison:join-paths imalison:projects-directory (oref repo :name))))
|
||||||
|
(if (file-exists-p prospective-path)
|
||||||
|
(funcall github-search-prompt-for-target-directory repo)
|
||||||
|
prospective-path))))
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(setq github-search-get-target-directory-for-repo-function
|
||||||
|
'imalison:get-projects-directory-target-from-repo)))
|
||||||
|
#+END_SRC
|
||||||
|
*** git-link
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package git-link
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(setq git-link-use-commit t)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** git-gutter
|
*** git-gutter
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@ -1752,39 +1772,19 @@ I use helm for almost all emacs completion
|
|||||||
(use-package github-clone
|
(use-package github-clone
|
||||||
:commands github-clone)
|
:commands github-clone)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** github-search
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(defvar imalison:github-search-load-path
|
|
||||||
(imalison:join-paths imalison:projects-directory "github-search"))
|
|
||||||
(use-package github-search
|
|
||||||
:ensure nil
|
|
||||||
:load-path imalison:github-search-load-path
|
|
||||||
:commands (github-search-clone-repo github-search-user-clone-repo)
|
|
||||||
:preface
|
|
||||||
(progn
|
|
||||||
(defun imalison:get-projects-directory-target-from-repo (repo)
|
|
||||||
(let ((prospective-path
|
|
||||||
(imalison:join-paths imalison:projects-directory (oref repo :name))))
|
|
||||||
(if (file-exists-p prospective-path)
|
|
||||||
(funcall github-search-prompt-for-target-directory repo)
|
|
||||||
prospective-path))))
|
|
||||||
:config
|
|
||||||
(progn
|
|
||||||
(setq github-search-get-target-directory-for-repo-function
|
|
||||||
'imalison:get-projects-directory-target-from-repo)))
|
|
||||||
#+END_SRC
|
|
||||||
*** github-notifier
|
*** github-notifier
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package github-notifier
|
(use-package github-notifier
|
||||||
:disabled t
|
:disabled t
|
||||||
:config (github-notifier-mode))
|
:config (github-notifier-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** git-link
|
*** gist
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package git-link
|
(use-package gist
|
||||||
:config
|
:commands (gist-region gist-region-private gist-buffer gist-buffer-private
|
||||||
(progn
|
gist-region-or-buffer gist-region-or-buffer-private
|
||||||
(setq git-link-use-commit t)))
|
gist-list-user gist-list gist-fetch gist-star
|
||||||
|
gist-unstar gist-list-starred gist-fork))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Programming
|
** Programming
|
||||||
*** Language Specific
|
*** Language Specific
|
||||||
|
Loading…
Reference in New Issue
Block a user