/dotfiles

My dotfiles

Primary LanguageShell

dotfiles

Usage

SSH setting of GitHub

mkdir -p ~/.ssh/github
ssh-keygen -t ed25519 -f ~/.ssh/github/id_ed25519
cat ~/.ssh/github/id_ed25519.pub
# paste pub-key to GitHub -> Settings -> SSH and GPG keys -> SSH keys

Setup

cd $HOME
git clone git@github.com:guricerin/dotfiles.git
cd dotfiles/
bash setup.sh

After Setup

Install linuxbrew

sudo apt install build-essential procps curl file git
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Install tools

brew install zsh starship asdf pre-commit detect-secrets

Set zsh as default shell

echo `which zsh` | sudo tee -a /etc/shells
chsh -s `which zsh`