Add Forge

Forge stores its information in an SQLite database, and on Windows,
that's not just available.  I found a solution in Win Builds
(http://win-builds.org/doku.php), though I think I could've just
downloaded a gcc binary and added that to my PATH, or something.  It
probably requires further research.  Anyway, that's why the exec-path
is updated as well.
This commit is contained in:
Ashley Duckworth 2021-01-23 12:48:44 -06:00
parent d294b64f3e
commit 0e36933f29
2 changed files with 10 additions and 0 deletions

View File

@ -1410,6 +1410,14 @@ following in =cmd.exe= to set =$HOME= correctly:
(setenv "GIT_ASKPASS" "git-gui--askpass")
#+end_src
**** Forge
#+begin_src emacs-lisp :noweb-ref packages
(straight-use-package 'forge)
(with-eval-after-load 'magit
(require 'forge))
#+end_src
*** Git file modes
#+begin_src emacs-lisp :noweb-ref packages
@ -1683,6 +1691,7 @@ any data loss. Here's what all that looks like.
(expand-file-name "Git/usr/bin" win-app-dir)
(expand-file-name "Git/mingw64/bin" win-app-dir)
(expand-file-name "Everything" win-app-dir)
(expand-file-name "Win-builds/bin" win-app-dir)
;; Linux
(expand-file-name "bin" user-emacs-directory)
(expand-file-name "~/bin")

View File

@ -23,6 +23,7 @@
(expand-file-name "Git/usr/bin" win-app-dir)
(expand-file-name "Git/mingw64/bin" win-app-dir)
(expand-file-name "Everything" win-app-dir)
(expand-file-name "Win-builds/bin" win-app-dir)
;; Linux
(expand-file-name "bin" user-emacs-directory)
(expand-file-name "~/bin")