small
parent
9a6ec22f46
commit
ae3c7ce839
|
@ -8,7 +8,9 @@
|
||||||
|
|
||||||
[Neovim](neovim.md): `vim` fork.
|
[Neovim](neovim.md): `vim` fork.
|
||||||
|
|
||||||
[bat](https://github.com/sharkdp/bat): `cat` with colors.
|
[exa](exa.md): `ls` replacement.
|
||||||
|
|
||||||
|
[bat](bat.md): `cat` with colors.
|
||||||
|
|
||||||
[fd](https://github.com/sharkdp/fd): simple `find`.
|
[fd](https://github.com/sharkdp/fd): simple `find`.
|
||||||
|
|
||||||
|
@ -16,8 +18,6 @@
|
||||||
|
|
||||||
[diff-so-fancy](https://github.com/so-fancy/diff-so-fancy): `diff` with human readable.
|
[diff-so-fancy](https://github.com/so-fancy/diff-so-fancy): `diff` with human readable.
|
||||||
|
|
||||||
[exa](https://github.com/ogham/exa): `ls` replacement.
|
|
||||||
|
|
||||||
[tldr](https://github.com/tldr-pages/tldr): simple `man`.
|
[tldr](https://github.com/tldr-pages/tldr): simple `man`.
|
||||||
|
|
||||||
[Ncat](ncat.md): Netcat implementation from Nmap project.
|
[Ncat](ncat.md): Netcat implementation from Nmap project.
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
# [bat](https://github.com/sharkdp/bat)
|
||||||
|
|
||||||
|
| Distribution | Package |
|
||||||
|
| ------------ | ---------- |
|
||||||
|
| Archlinux | `bat` |
|
||||||
|
| Ubuntu | `rust-bat` |
|
||||||
|
|
||||||
|
Add to `~/.bashrc`:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
[[ -f /usr/bin/bat ]] && \
|
||||||
|
alias cat="bat"
|
||||||
|
```
|
|
@ -0,0 +1,13 @@
|
||||||
|
# [exa](https://github.com/ogham/exa)
|
||||||
|
|
||||||
|
| Distribution | Package |
|
||||||
|
| ------------ | ---------- |
|
||||||
|
| Archlinux | `exa` |
|
||||||
|
| Ubuntu | `rust-exa` |
|
||||||
|
|
||||||
|
Add to `~/.bashrc`:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
[[ -f /usr/bin/exa ]] && \
|
||||||
|
alias ls="exa"
|
||||||
|
```
|
|
@ -9,4 +9,7 @@ Add to `~/.bashrc`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
export EDITOR=nvim
|
export EDITOR=nvim
|
||||||
|
|
||||||
|
[[ -f /usr/bin/nvim ]] && \
|
||||||
|
alias vim="nvim"
|
||||||
```
|
```
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Ansible
|
||||||
|
|
||||||
|
| Distribution | Package |
|
||||||
|
| ------------ | --------- |
|
||||||
|
| Archlinux | `ansible` |
|
||||||
|
| Ubuntu | `ansible` |
|
Loading…
Reference in New Issue