README.md 3.68 KB
Newer Older
Griko Nibras's avatar
Griko Nibras committed
1
2
# lol

3
Plugin for adding catspeak aliases, because why not.
Griko Nibras's avatar
Griko Nibras committed
4

5
To use it, add `lol` to the plugins array in your zshrc file:
Griko Nibras's avatar
Griko Nibras committed
6

7
8
9
```zsh
plugins=(... lol)
```
Griko Nibras's avatar
Griko Nibras committed
10
11
12

## Aliases

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| Alias        | Command                                                         |
| ------------ | --------------------------------------------------------------- |
| `:3`         | `echo`                                                          |
| `alwayz`     | `tail -f`                                                       |
| `bringz`     | `git pull`                                                      |
| `btw`        | `nice`                                                          |
| `byes`       | `exit`                                                          |
| `chicken`    | `git add`                                                       |
| `cya`        | `reboot`                                                        |
| `donotwant`  | `rm`                                                            |
| `dowant`     | `cp`                                                            |
| `gimmeh`     | `touch`                                                         |
| `gtfo`       | `mv`                                                            |
| `hackzor`    | `git init`                                                      |
| `hai`        | `cd`                                                            |
| `icanhas`    | `mkdir`                                                         |
| `ihasbucket` | `df -h`                                                         |
| `iminurbase` | `finger`                                                        |
| `inur`       | `locate`                                                        |
| `invisible`  | `cat`                                                           |
| `iz`         | `ls`                                                            |
| `kthxbai`    | `halt`                                                          |
| `letcat`     | `git checkout`                                                  |
| `moar`       | `more`                                                          |
| `nomnom`     | `killall`                                                       |
| `nomz`       | `ps aux`                                                        |
| `nowai`      | `chmod`                                                         |
| `oanward`    | `git commit -m`                                                 |
| `obtw`       | `nohup`                                                         |
| `onoz`       | `cat /var/log/errors.log`                                       |
| `ooanward`   | `git commit -am`                                                |
| `plz`        | `pwd`                                                           |
| `pwned`      | `ssh`                                                           |
| `rtfm`       | `man`                                                           |
| `rulz`       | `git push`                                                      |
| `tldr`       | `less`                                                          |
| `violenz`    | `git rebase`                                                    |
| `visible`    | `echo`                                                          |
| `wtf`        | `dmesg`                                                         |
| `yolo`       | `git commit -m "$(curl -s http://whatthecommit.com/index.txt)"` |
Griko Nibras's avatar
Griko Nibras committed
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

## Usage Examples

```sh
# mkdir new-directory
icanhas new-directory

# killall firefox
nomnom firefox

# chmod u=r,go= some.file
nowai u=r,go= some.file

# ssh root@catserver.org
pwned root@catserver.org

69
# git commit -m "$(curl -s http://whatthecommit.com/index.txt)"
Griko Nibras's avatar
Griko Nibras committed
70
71
yolo
```