-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathspeedread.plugin.zsh
More file actions
23 lines (18 loc) · 899 Bytes
/
Copy pathspeedread.plugin.zsh
File metadata and controls
23 lines (18 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This allows the speedread command to be installed in ZSH using antigen.
# Antigen is a bundle manager. It allows you to enhance the functionality of
# your zsh session by installing bundles and themes easily.
# Antigen documentation:
# http://antigen.sharats.me/
# https://github.com/zsh-users/antigen
# Install speedread:
# antigen bundle matthewfranglen/speedread
# Bundles installed by antigen are available for use immediately.
# Update speedread (and all other antigen bundles):
# antigen update
# The antigen command will download the git repository to a folder and then
# execute an enabling script (this file). The complete process for loading the
# code is documented here:
# https://github.com/zsh-users/antigen#notes-on-writing-plugins
# This specific script just adds the repository folder to the PATH, allowing it
# to be run from any location.
export PATH=${PATH}:$(dirname $0)