diff --git a/Applications/README.md b/Applications/README.md index 9a8a955..692f10c 100644 --- a/Applications/README.md +++ b/Applications/README.md @@ -8,7 +8,9 @@ [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`. @@ -16,8 +18,6 @@ [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`. [Ncat](ncat.md): Netcat implementation from Nmap project. diff --git a/Applications/bat.md b/Applications/bat.md new file mode 100644 index 0000000..2a44579 --- /dev/null +++ b/Applications/bat.md @@ -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" +``` diff --git a/Applications/exa.md b/Applications/exa.md new file mode 100644 index 0000000..d348476 --- /dev/null +++ b/Applications/exa.md @@ -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" +``` diff --git a/Applications/neovim.md b/Applications/neovim.md index f1802e0..2a7d525 100644 --- a/Applications/neovim.md +++ b/Applications/neovim.md @@ -9,4 +9,7 @@ Add to `~/.bashrc`: ```bash export EDITOR=nvim + +[[ -f /usr/bin/nvim ]] && \ + alias vim="nvim" ``` diff --git a/Development/ansible.md b/Development/ansible.md new file mode 100644 index 0000000..409fbd1 --- /dev/null +++ b/Development/ansible.md @@ -0,0 +1,6 @@ +# Ansible + +| Distribution | Package | +| ------------ | --------- | +| Archlinux | `ansible` | +| Ubuntu | `ansible` |