aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-07-26 18:49:11 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-07-26 18:49:11 +0200
commitdd53a9ecca9805908bae2428702148b0e7e07339 (patch)
tree33f61accf8f745da4ed490c0331fb00259f5b09e
parent9e6d146b99183500da0b859ad2b7e5038f5f607d (diff)
doc: Update wording on Guix setup and amend variable customizationHEADmaster
-rw-r--r--README8
-rw-r--r--README.md8
2 files changed, 8 insertions, 8 deletions
diff --git a/README b/README
index 51d66b3..1f5becf 100644
--- a/README
+++ b/README
@@ -9,7 +9,7 @@ To install it manually, simply point to the =fdroid.el= Git checkout in your =lo
(add-to-list 'load-path "path/to/fdroid.el")
#+end_src
-If you'd like to contribute to the project, the easiest way is for you to install the [[https://guix.gnu.org/][GNU Guix]] package manager and start developing on the local checkout by invoking the following commands:
+If you'd like to contribute to the package and get the project set up quickly, I suggest you install the [[https://guix.gnu.org/][GNU Guix]] package manager and start developing on the local checkout by invoking the following commands:
#+begin_src sh
cd /path/to/fdroid.el
@@ -21,10 +21,10 @@ Since this package leverages the [[https://github.com/mvdan/fdroidcl][fdroidcl]]
An example configuration might look like this:
#+begin_src elisp
-(define-key global-map (kbd "C-c C--") 'fdroid-map) ; Set your preferred binding for the fdroid-map
+(define-key global-map (kbd "C-c f") 'fdroid-map) ; Set your preferred binding for the fdroid-map
(with-eval-after-load 'fdroid
- (setopt fdroid-log-events t) ; Whether messages should be logged after an operation
- (setopt fdroid-sans-device t)) ; Perform `fdroid-*' operations without a connected device
+ (setq fdroid-log-events t) ; Whether messages should be logged after an operation
+ (setq fdroid-sans-device t)) ; Perform `fdroid-*' operations without a connected device
#+end_src
Above, we set a global binding for the =fdroid-map=. From here onward we can use the =fdroid-list-packages= command to show all packages available for the current F-Droid repository. You can then invoke the interactive commands set below or, if you have the [[https://github.com/oantolin/embark][Embark]] package installed, the corresponding Embark actions on the mini-buffer targets:
diff --git a/README.md b/README.md
index 917c8a4..022ae86 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ To install it manually, simply point to the `fdroid.el` Git checkout in your `lo
(add-to-list 'load-path "path/to/fdroid.el")
-If you'd like to contribute to the project, the easiest way is for you to install the [GNU Guix](https://guix.gnu.org/) package manager and start developing on the local checkout by invoking the following commands:
+If you'd like to contribute to the package and get the project set up quickly, I suggest you install the [GNU Guix](https://guix.gnu.org/) package manager and start developing on the local checkout by invoking the following commands:
cd /path/to/fdroid.el
guix shell --pure
@@ -17,10 +17,10 @@ Since this package leverages the [fdroidcl](https://github.com/mvdan/fdroidcl) F
An example configuration might look like this:
- (define-key global-map (kbd "C-c C--") 'fdroid-map) ; Set your preferred binding for the fdroid-map
+ (define-key global-map (kbd "C-c f") 'fdroid-map) ; Set your preferred binding for the fdroid-map
(with-eval-after-load 'fdroid
- (setopt fdroid-log-events t) ; Whether messages should be logged after an operation
- (setopt fdroid-sans-device t)) ; Perform `fdroid-*' operations without a connected device
+ (setq fdroid-log-events t) ; Whether messages should be logged after an operation
+ (setq fdroid-sans-device t)) ; Perform `fdroid-*' operations without a connected device
Above, we set a global binding for the `fdroid-map`. From here onward we can use the `fdroid-list-packages` command to show all packages available for the current F-Droid repository. You can then invoke the interactive commands set below or, if you have the [Embark](https://github.com/oantolin/embark) package installed, the corresponding Embark actions on the mini-buffer targets: