/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install zsh fzf ripgrep fd lazygit
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
git clone https://github.com/Aloxaf/fzf-tab ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-tab
brew tap mongodb/brew
brew install mongodb-community
brew install redis
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
defaults write -g InitialKeyRepeat -float 12.0
defaults write -g KeyRepeat -float 1.5
sudo apt install -y build-essential python3 curl git
sudo apt-get install zsh fzf ripgrep
sudo chown -R $USER:$USER /var/www
zc: Fold the code block at the cursor's current position.
zo: Unfold the code block at the cursor's current position.
za: Toggle the fold state (fold or unfold) at the cursor's current position.
zf: Create a manual fold from a selected range of lines (enter visual mode v, select lines, then zf).
zd: Delete a manual fold at the cursor's current position.
zC: Fold recursively (folds the current region and all nested regions).
zO: Unfold recursively (unfolds the current region and all nested regions).
zm: Fold more (increases the fold level).
zr: Unfold more (decreases the fold level).
zM: Fold all regions in the editor.
zR: Unfold all regions in the editor.```