65 lines
864 B
Markdown
65 lines
864 B
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
|