We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8391f6e commit 9b01548Copy full SHA for 9b01548
etc/README.md
zsh/README.md
@@ -0,0 +1,28 @@
1
+# Installation instructions
2
+
3
+## zsh
4
5
+Create a new folder for completions:
6
7
+```sh
8
+mkdir -p ~/.zsh/completions
9
+```
10
11
+Copy the file `/etc/_sdk` from the location where `sdk` is installed to the folder `~/.zsh/completions/`:
12
13
14
+cp /path/to/etc/sdk.zsh_completion ~/.zsh/completions/
15
16
17
+Then add the following lines to your `.zshrc` file:
18
19
20
+fpath=(~/.zsh/completions $fpath)
21
+autoload -U compinit && compinit
22
23
24
+### Using antigen
25
26
27
+antigen bundle sdkman/sdkman-cli zsh
28
etc/sdk.zsh_completion renamed to zsh/_sdk
0 commit comments