197 lines
2.1 KiB
Markdown
197 lines
2.1 KiB
Markdown
> [!NOTE]
|
|
> - My preferred method of installation is [Homebrew](https://brew.sh/), but it doesn't restrict the possibility of installing using other methods.
|
|
>
|
|
> - Files must be stored in the `~/.config` directory.
|
|
|
|
## Installation
|
|
|
|
### Brew
|
|
https://brew.sh/
|
|
|
|
```shell
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
```
|
|
|
|
### NeoVim
|
|
https://github.com/neovim/neovim
|
|
|
|
```shell
|
|
brew install neovim
|
|
```
|
|
|
|
### Ghostty
|
|
https://ghostty.org/download
|
|
|
|
### Starship
|
|
https://starship.rs/
|
|
|
|
```shell
|
|
brew install starship
|
|
```
|
|
Add to `.zshrc`
|
|
```
|
|
plugins=(
|
|
...
|
|
starship
|
|
...
|
|
)
|
|
```
|
|
|
|
### Bat
|
|
https://github.com/sharkdp/bat
|
|
|
|
```shell
|
|
brew install bat
|
|
```
|
|
|
|
### Eza
|
|
https://github.com/eza-community/eza
|
|
|
|
```shell
|
|
brew install eza
|
|
```
|
|
|
|
Add to `.zshrc`
|
|
```
|
|
plugins=(
|
|
...
|
|
eza
|
|
...
|
|
)
|
|
```
|
|
|
|
### Fzf
|
|
https://github.com/junegunn/fzf
|
|
|
|
```shell
|
|
brew install fzf
|
|
```
|
|
|
|
Add to `.zshrc`
|
|
```
|
|
plugins=(
|
|
...
|
|
fzf
|
|
...
|
|
)
|
|
```
|
|
|
|
### Kubectx & kubens
|
|
https://github.com/ahmetb/kubectx
|
|
|
|
```shell
|
|
brew install kubectx
|
|
```
|
|
|
|
### k9s
|
|
https://github.com/derailed/k9s
|
|
|
|
```shell
|
|
brew install k9s
|
|
```
|
|
|
|
Add to `.zshrc`
|
|
```
|
|
plugins=(
|
|
...
|
|
k9s
|
|
...
|
|
)
|
|
```
|
|
|
|
### LazyGit
|
|
https://github.com/jesseduffield/lazygit
|
|
|
|
```shell
|
|
brew install lazygit
|
|
```
|
|
|
|
### LazyDocker
|
|
https://github.com/jesseduffield/lazydocker
|
|
|
|
```shell
|
|
brew install lazydocker
|
|
```
|
|
|
|
### Mise
|
|
https://mise.jdx.dev/
|
|
|
|
```shell
|
|
brew install mise
|
|
```
|
|
|
|
### Pwgen
|
|
https://github.com/aronhoyer/pwgen
|
|
|
|
```shell
|
|
brew install pwgen
|
|
```
|
|
|
|
### RipGrep
|
|
https://github.com/BurntSushi/ripgrep
|
|
|
|
```shell
|
|
brew install ripgrep
|
|
```
|
|
|
|
### SSH-list
|
|
https://github.com/akinoiro/ssh-list
|
|
|
|
```shell
|
|
brew install ssh-list
|
|
```
|
|
|
|
### TFEnv
|
|
https://github.com/tfutils/tfenv
|
|
|
|
```shell
|
|
brew install tfenv
|
|
```
|
|
|
|
### TheFuck
|
|
https://github.com/nvbn/thefuck
|
|
|
|
```shell
|
|
brew install thefuck
|
|
```
|
|
|
|
Add to `.zshrc`
|
|
```
|
|
plugins=(
|
|
...
|
|
thefuck
|
|
...
|
|
)
|
|
```
|
|
|
|
### TLDR-pages
|
|
https://github.com/tldr-pages/tldr
|
|
|
|
```shell
|
|
brew install tlrc
|
|
```
|
|
|
|
### Yazi
|
|
https://github.com/sxyazi/yazi
|
|
|
|
```shell
|
|
brew install yazi
|
|
```
|
|
|
|
### zoxide
|
|
https://github.com/ajeetdsouza/zoxide
|
|
|
|
```shell
|
|
brew install zoxide
|
|
```
|
|
|
|
Add to `.zshrc`
|
|
```
|
|
plugins=(
|
|
...
|
|
zoxide
|
|
...
|
|
)
|
|
```
|
|
|