]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/lol/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / lol / README.md
1 # lol
2
3 Plugin for adding catspeak aliases, because why not.
4
5 To use it, add `lol` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... lol)
9 ```
10
11 ## Aliases
12
13 | Alias        | Command                                                         |
14 | ------------ | --------------------------------------------------------------- |
15 | `:3`         | `echo`                                                          |
16 | `alwayz`     | `tail -f`                                                       |
17 | `bringz`     | `git pull`                                                      |
18 | `btw`        | `nice`                                                          |
19 | `byes`       | `exit`                                                          |
20 | `chicken`    | `git add`                                                       |
21 | `cya`        | `reboot`                                                        |
22 | `donotwant`  | `rm`                                                            |
23 | `dowant`     | `cp`                                                            |
24 | `gimmeh`     | `touch`                                                         |
25 | `gtfo`       | `mv`                                                            |
26 | `hackzor`    | `git init`                                                      |
27 | `hai`        | `cd`                                                            |
28 | `icanhas`    | `mkdir`                                                         |
29 | `ihasbucket` | `df -h`                                                         |
30 | `iminurbase` | `finger`                                                        |
31 | `inur`       | `locate`                                                        |
32 | `invisible`  | `cat`                                                           |
33 | `iz`         | `ls`                                                            |
34 | `kthxbai`    | `halt`                                                          |
35 | `letcat`     | `git checkout`                                                  |
36 | `moar`       | `more`                                                          |
37 | `nomnom`     | `killall`                                                       |
38 | `nomz`       | `ps aux`                                                        |
39 | `nowai`      | `chmod`                                                         |
40 | `oanward`    | `git commit -m`                                                 |
41 | `obtw`       | `nohup`                                                         |
42 | `onoz`       | `cat /var/log/errors.log`                                       |
43 | `ooanward`   | `git commit -am`                                                |
44 | `plz`        | `pwd`                                                           |
45 | `pwned`      | `ssh`                                                           |
46 | `rtfm`       | `man`                                                           |
47 | `rulz`       | `git push`                                                      |
48 | `tldr`       | `less`                                                          |
49 | `violenz`    | `git rebase`                                                    |
50 | `visible`    | `echo`                                                          |
51 | `wtf`        | `dmesg`                                                         |
52 | `yolo`       | `git commit -m "$(curl -s http://whatthecommit.com/index.txt)"` |
53
54 ## Usage Examples
55
56 ```sh
57 # mkdir new-directory
58 icanhas new-directory
59
60 # killall firefox
61 nomnom firefox
62
63 # chmod u=r,go= some.file
64 nowai u=r,go= some.file
65
66 # ssh root@catserver.org
67 pwned root@catserver.org
68
69 # git commit -m "$(curl -s http://whatthecommit.com/index.txt)"
70 yolo
71 ```