full path for brew
This commit is contained in:
parent
6985a664a5
commit
f665e6182d
1 changed files with 7 additions and 7 deletions
14
setup_macos
14
setup_macos
|
|
@ -8,23 +8,23 @@
|
|||
export XDG_CONFIG_HOME="$HOME"/.config
|
||||
mkdir -p "$XDG_CONFIG_HOME"/bash
|
||||
mkdir -p "$XDG_CONFIG_HOME"/alacritty
|
||||
mkdir -p "$XDG_CONFIG_HOME"/alacritty/themes
|
||||
mkdir -p "$XDG_CONFIG_HOME"/alacritty/themes/themes
|
||||
mkdir -p "$XDG_CONFIG_HOME"/karabiner
|
||||
|
||||
mkdir -p tmp
|
||||
|
||||
# Curl alacritty cappuccin-macchiato theme
|
||||
curl -LO --output-dir ~/.config/alacritty https://github.com/catppuccin/alacritty/raw/main/catppuccin-macchiato.toml
|
||||
curl -LO --output-dir ~/.config/alacritty/themes/themes https://github.com/catppuccin/alacritty/raw/main/catppuccin-macchiato.toml
|
||||
|
||||
# Install brew
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||
|
||||
# Install alacritty
|
||||
brew install --cask alacritty
|
||||
/opt/homebrew/bin/brew install --cask alacritty
|
||||
|
||||
# Install nerd font jetbrains
|
||||
brew tap homebrew/cask-fonts
|
||||
brew install --cask jetbrains-mono-nerd-font
|
||||
/opt/homebrew/bin/brew tap homebrew/cask-fonts
|
||||
/opt/homebrew/bin/brew rew install --cask jetbrains-mono-nerd-font
|
||||
|
||||
# Install nvim and AstroNvim
|
||||
curl -L https://github.com/neovim/neovim/releases/download/stable/nvim-macos.tar.gz -o tmp/nvim-macos.tar.gz
|
||||
|
|
@ -35,8 +35,8 @@ mkdir -p "$XDG_CONFIG_HOME"/nvim/lua/user
|
|||
cp init.lua "$XDG_CONFIG_HOME"/nvim/lua/user/init.lua
|
||||
|
||||
# Install other Mac Packages
|
||||
brew install --cask obsidian vlc firefox amethyst hiddenbar karabiner-elements bitwarden signal
|
||||
brew install tmux starship ripgrep lazygit bottom wireguard-go ffmpeg gh
|
||||
/opt/homebrew/bin/brew install --cask obsidian vlc firefox amethyst hiddenbar karabiner-elements bitwarden signal
|
||||
/opt/homebrew/bin/brew install tmux starship ripgrep lazygit bottom wireguard-go ffmpeg gh
|
||||
|
||||
# Change default shell to bash
|
||||
chsh -s /bin/bash
|
||||
|
|
|
|||
Loading…
Reference in a new issue