File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ adding the following snippet:
20
20
Load up the completion by placing the ` exercism_completion.zsh ` somewhere on
21
21
your ` $fpath ` as ` _exercism ` . For example:
22
22
23
- mkdir -p ~/.config/exercism
24
- mv ../shell/exercism_completion.zsh ~/.config/exercism /_exercism
23
+ mkdir -p ~/.zsh/functions
24
+ mv ../shell/exercism_completion.zsh ~/.zsh/functions /_exercism
25
25
26
26
and then add the directory to your ` $fpath ` in your ` .zshrc ` , ` .zsh_profile ` or
27
27
` .profile ` before running ` compinit ` :
28
28
29
- export fpath=(~/.config/exercism $fpath)
29
+ export fpath=(~/.zsh/functions $fpath)
30
30
autoload -U compinit && compinit
31
31
32
32
@@ -39,4 +39,3 @@ If you are using the popular [oh-my-zsh](https://github.com/robbyrussell/oh-my-z
39
39
Completions must go in the user defined ` $fish_complete_path ` . By default, this is ` ~/.config/fish/completions `
40
40
41
41
mv ../shell/exercism.fish ~/.config/fish/exercism.fish
42
-
You can’t perform that action at this time.
0 commit comments