README.md 3.89 KB
Newer Older
Griko Nibras's avatar
Griko Nibras committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# lol

Plugin for adding catspeak aliases, because why not

## Enabling the plugin

1. Open your `.zshrc` file and add `lol` in the plugins section:

   ```zsh
   plugins=(
       # all your enabled plugins
       lol
   )
   ```

16
2. Restart your terminal session or restart the shell:
Griko Nibras's avatar
Griko Nibras committed
17
18

   ```console
19
   $ exec zsh
Griko Nibras's avatar
Griko Nibras committed
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
   $
   ```

## Aliases

| 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 https://whatthecommit.com/index.txt)"` |

## 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

# git commit -m "$(curl -s https://whatthecommit.com/index.txt)"
yolo
```