aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-07-06 07:47:12 -0400
committerAdam Harrison <adamdharrison@gmail.com>2023-07-06 07:47:12 -0400
commitc554678b9a08da51dec43a645bc420cc7fad445a (patch)
tree06407b752532bee4f507e89d0c6743af3b7fc5f5
parent7527c13da5ba899be991244239032b7f959d7842 (diff)
downloadlite-xl-plugin-manager-c554678b9a08da51dec43a645bc420cc7fad445a.tar.gz
lite-xl-plugin-manager-c554678b9a08da51dec43a645bc420cc7fad445a.zip
Added in section about getting the GUI.
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index db2ce4d..3eafd59 100644
--- a/README.md
+++ b/README.md
@@ -34,11 +34,20 @@ The fastest way to get started with lpm is to simply pull a release.
wget https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/latest/lpm.x86_64-linux -O lpm && chmod +x lpm
```
+If you want to get the GUI version installed with lite-xl, you can tell `lpm` to install `plugin_manager`, which will allow
+you to access `Plugin Manager: Show` in the command palette in `lite-xl`.
+
+```
+./lpm install plugin_manager --assume-yes
+```
+
+### Compilation
+
If you have a C compiler, and `git`, and want to compile from scratch,
you can do:
```
-git clone git@github.com:lite-xl/lite-xl-plugin-manager.git \
+git clone https://github.com/lite-xl/lite-xl-plugin-manager.git \
--shallow-submodules --recurse-submodules && cd lite-xl-plugin-manager &&\
./build.sh -DLPM_STATIC && ./lpm
````