A collection of personal and technical notes.
kittyInstall the kitty terminal.
curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin
References:
sshCopy the SSH Config content from the Laptop Configs folder from the Bitwarden account.
dotfilesClone and follow the instructions from this repository.
brewInstall the brew package manager.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
References:
tmuxInstall the tmux terminal multiplexer.
brew install tmux
Then follow the dotfiles command to create a symbolic link for the configuration.
Install the oh-my-zsh tool to enhance zsh.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Then follow the dotfiles command to create a symbolic link for the configuration.
neovimInstall the neovim CLI-based text editor.
brew install neovim
Configure the LazyVim settings by cloning this repository https://github.com/arantebw/nvim to the ~/.config/ directory.
nvmcurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash
References:
uvInstall the uv Python package manager.
brew install uv