diff options
author | Ashley Duckworth | 2021-01-23 12:48:44 -0600 |
---|---|---|
committer | Ashley Duckworth | 2021-01-23 12:48:44 -0600 |
commit | 0e36933f2990fd93775d2ad890ac5c2c432b5d96 (patch) | |
tree | 9a5c66ce6fcbcc2385a46cb2bfe95ea1ee1d11e0 | |
parent | Setup (ma)git for windows (diff) | |
download | emacs-0e36933f2990fd93775d2ad890ac5c2c432b5d96.tar.gz emacs-0e36933f2990fd93775d2ad890ac5c2c432b5d96.zip |
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.
-rw-r--r-- | config.org | 9 | ||||
-rw-r--r-- | early-init.el | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config.org b/config.org index 9ebc855..4e9d6c6 100644 --- a/config.org +++ b/config.org | |||
@@ -1410,6 +1410,14 @@ following in =cmd.exe= to set =$HOME= correctly: | |||
1410 | (setenv "GIT_ASKPASS" "git-gui--askpass") | 1410 | (setenv "GIT_ASKPASS" "git-gui--askpass") |
1411 | #+end_src | 1411 | #+end_src |
1412 | 1412 | ||
1413 | **** Forge | ||
1414 | |||
1415 | #+begin_src emacs-lisp :noweb-ref packages | ||
1416 | (straight-use-package 'forge) | ||
1417 | (with-eval-after-load 'magit | ||
1418 | (require 'forge)) | ||
1419 | #+end_src | ||
1420 | |||
1413 | *** Git file modes | 1421 | *** Git file modes |
1414 | 1422 | ||
1415 | #+begin_src emacs-lisp :noweb-ref packages | 1423 | #+begin_src emacs-lisp :noweb-ref packages |
@@ -1683,6 +1691,7 @@ any data loss. Here's what all that looks like. | |||
1683 | (expand-file-name "Git/usr/bin" win-app-dir) | 1691 | (expand-file-name "Git/usr/bin" win-app-dir) |
1684 | (expand-file-name "Git/mingw64/bin" win-app-dir) | 1692 | (expand-file-name "Git/mingw64/bin" win-app-dir) |
1685 | (expand-file-name "Everything" win-app-dir) | 1693 | (expand-file-name "Everything" win-app-dir) |
1694 | (expand-file-name "Win-builds/bin" win-app-dir) | ||
1686 | ;; Linux | 1695 | ;; Linux |
1687 | (expand-file-name "bin" user-emacs-directory) | 1696 | (expand-file-name "bin" user-emacs-directory) |
1688 | (expand-file-name "~/bin") | 1697 | (expand-file-name "~/bin") |
diff --git a/early-init.el b/early-init.el index f9486ff..1c2492e 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -23,6 +23,7 @@ | |||
23 | (expand-file-name "Git/usr/bin" win-app-dir) | 23 | (expand-file-name "Git/usr/bin" win-app-dir) |
24 | (expand-file-name "Git/mingw64/bin" win-app-dir) | 24 | (expand-file-name "Git/mingw64/bin" win-app-dir) |
25 | (expand-file-name "Everything" win-app-dir) | 25 | (expand-file-name "Everything" win-app-dir) |
26 | (expand-file-name "Win-builds/bin" win-app-dir) | ||
26 | ;; Linux | 27 | ;; Linux |
27 | (expand-file-name "bin" user-emacs-directory) | 28 | (expand-file-name "bin" user-emacs-directory) |
28 | (expand-file-name "~/bin") | 29 | (expand-file-name "~/bin") |