Introduced startup bugs based on odd dependencies
This commit is contained in:
parent
758782a0b6
commit
dce7a28d1e
2 changed files with 9 additions and 4 deletions
|
@ -1325,7 +1325,6 @@ The [[https://github.com/emacsmirror/git-timemachine][git-timemachine]] project
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Gist
|
*** Gist
|
||||||
Using the [[https://github.com/emacsmirror/gist][gist package]] to write code snippets on [[https://gist.github.com/][Github]] seems like it can be useful, but I'm not sure how often.
|
Using the [[https://github.com/emacsmirror/gist][gist package]] to write code snippets on [[https://gist.github.com/][Github]] seems like it can be useful, but I'm not sure how often.
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package gist
|
(use-package gist
|
||||||
:config
|
:config
|
||||||
(ha-leader
|
(ha-leader
|
||||||
|
@ -1338,14 +1337,21 @@ Using the [[https://github.com/emacsmirror/gist][gist package]] to write code sn
|
||||||
"g G B" '("private buffer" . gist-buffer-private) ; Explicitly create a private gist.
|
"g G B" '("private buffer" . gist-buffer-private) ; Explicitly create a private gist.
|
||||||
"g c g" '("gist" . gist-region-or-buffer) ; Post either the current region, or buffer
|
"g c g" '("gist" . gist-region-or-buffer) ; Post either the current region, or buffer
|
||||||
"g c G" '("private gist" . gist-region-or-buffer-private))) ; create private gist from region or buffer
|
"g c G" '("private gist" . gist-region-or-buffer-private))) ; create private gist from region or buffer
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp :tangle no
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
The gist project depends on the [[https://github.com/sigma/gh.el][gh library]]. There seems to be a problem with it.
|
||||||
|
#+BEGIN_SRC emacs-lisp :tangle no
|
||||||
|
(use-package gh
|
||||||
|
:straight (:type git :host :github :repo "sigma/gh.el"))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
*** Forge
|
*** Forge
|
||||||
Let's extend Magit with [[https://github.com/magit/forge][Magit Forge]] for working with Github and Gitlab:
|
Let's extend Magit with [[https://github.com/magit/forge][Magit Forge]] for working with Github and Gitlab:
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package forge
|
(use-package forge
|
||||||
:after magit
|
:after magit
|
||||||
:init
|
|
||||||
(setq )
|
|
||||||
:config
|
:config
|
||||||
(ha-leader
|
(ha-leader
|
||||||
"g '" '("Forge dispatch" . forge-dispatch)
|
"g '" '("Forge dispatch" . forge-dispatch)
|
||||||
|
|
|
@ -37,7 +37,6 @@ While I would like to share the /status/ of my reads, so ...
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package elfeed
|
(use-package elfeed
|
||||||
:after (link-hint)
|
|
||||||
:config
|
:config
|
||||||
(setq elfeed-db-directory "~/dropbox/.elfeed/")
|
(setq elfeed-db-directory "~/dropbox/.elfeed/")
|
||||||
(evil-define-key 'normal elfeed-show-mode-map (kbd "b") 'elfeed-show-visit)
|
(evil-define-key 'normal elfeed-show-mode-map (kbd "b") 'elfeed-show-visit)
|
||||||
|
|
Loading…
Reference in a new issue