til/Applications/README.md

29 lines
635 B
Markdown
Raw Normal View History

2020-05-01 02:45:13 +00:00
# CLI
2020-03-28 17:23:31 +00:00
2020-05-05 03:36:34 +00:00
[Neovim](https://github.com/neovim/neovim): like Vim.
```sh
export EDITOR=nvim
```
2020-03-28 17:23:31 +00:00
[bat](https://github.com/sharkdp/bat): `cat` with colors.
[fd](https://github.com/sharkdp/fd): simple `find`.
[fzf](https://github.com/junegunn/fzf): command-line finder.
2020-05-05 03:36:34 +00:00
Read [fzf](https://wiki.archlinux.org/index.php/Fzf).
2020-04-18 20:21:04 +00:00
```sh
export FZF_DEFAULT_COMMAND='fd -H'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
```
2020-03-28 17:23:31 +00:00
[tldr](https://github.com/tldr-pages/tldr): simple `man`.
[HTTPie](https://httpie.org/): call API in terminal.
[Rclone](https://rclone.org/): `rsync` for cloud storage.
2020-03-28 17:43:05 +00:00
2020-04-18 20:21:04 +00:00
[Prettier](https://prettier.io/): format code.