aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-03-15 11:31:20 +0100
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-03-15 11:32:26 +0100
commite1f0ef859749d93eed93987a9178320be0bef0e6 (patch)
tree25e4c820ff9ba1d121c447b6dfaad22c3942b955
parentcec8242d0ea363669e8d12259e87e27859fd1688 (diff)
doc: Adjust setup instructions
-rw-r--r--README9
1 files changed, 4 insertions, 5 deletions
diff --git a/README b/README
index 6ea2790..2c472fb 100644
--- a/README
+++ b/README
@@ -21,14 +21,13 @@ Since this package leverages the [[https://github.com/mvdan/fdroidcl][fdroidcl]]
An example configuration might look like this:
#+begin_src elisp
-(fdroid-default-keybindings)
+(define-key global-map (kbd "C-c C--") 'fdroid-map) ; Set your preferred binding for the fdroid-map
(with-eval-after-load 'fdroid
- (custom-set-variables
- '(fdroid-log-events t) ; Whether messages should be logged after an operation
- '(fdroid-sans-device t))) ; Perform `fdroid-*' operations without a connected device
+ (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
#+end_src
-Above, we set the default keybindings for the =fdroid-map=, meaning from here on we can use the =fdroid-list-packages= (~C-c C-- l~) 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:
+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:
- =fdroid-install= (~i~) :: install the current package.
- =fdroid-uninstall= (~u~) :: uninstall the current package.