diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-28 20:59:39 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-28 20:59:39 -0500 |
| commit | e9e5696bc95d34aad8eb561d7458ac21b06359b0 (patch) | |
| tree | a3a12c66a1774c3d8aa7f66aeadd5e004ecde8d7 /modules/local-repository.el | |
| parent | 95d3a96bf150b1349dd73479e2a117b1cf95c6bd (diff) | |
| download | dotemacs-e9e5696bc95d34aad8eb561d7458ac21b06359b0.tar.gz dotemacs-e9e5696bc95d34aad8eb561d7458ac21b06359b0.zip | |
bug fixing, repo changes, etc.
- add font lock studio,
- don't disable Emacs native vc backend functions
- change elpa mirror location
- change default location for localrepo
- update packages
- add constant for journals directory and ensure it exists on launch
- move project file to org-roam
- add remote repository reset to scripts folder
Diffstat (limited to 'modules/local-repository.el')
| -rw-r--r-- | modules/local-repository.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/local-repository.el b/modules/local-repository.el index bb8c2770..99e95c83 100644 --- a/modules/local-repository.el +++ b/modules/local-repository.el @@ -24,7 +24,8 @@ Used for the package-archive and package-archive-priorities lists.") A higher value means higher priority. If you want your local packages to be preferred, this must be a higher number than any other repositories.") -(defcustom localrepo-repository-location (concat user-emacs-directory "/localrepo") +(defcustom localrepo-repository-location + (concat user-emacs-directory "/.localrepo") "The location of the local repository. It's a good idea to keep this with the rest of your configuration files and keep them in source control.") @@ -44,7 +45,5 @@ keep them in source control.") (add-to-list 'package-archive-priorities (localrepo-repository-id . localrepo-repository-priority)))) - - (provide 'local-repository) ;;; local-repository.el ends here. |
