This repository includes all of my custom dotfiles. They should be cloned to
your home directory so that the path is ~/dotfiles/
.
Before starting the installation, you need:
- Homebrew installed on your system
If you've never installed these dotfiles before:
# Download and execute bootstrap script
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/alienlebarge/dotfiles/master/bootstrap.sh)"
# Make scripts executable
$ chmod +x bootstrap.sh brew.sh
# Install all required packages and applications
$ ./brew.sh
If you already have the repository cloned and just want to update packages:
$ ./brew.sh
$ stow --dir=. --target=$HOME ackrc env ghostty git starship vim zsh
To get the latest version of the dotfiles:
# Go to your dotfiles directory
$ cd ~/[dotfiles_folder]
# Pull the latest changes
$ git pull
Plugins are managed with vim-plug.
If you need to add a new plugin:
- Add it in the
.vimrc
file - Run
:PlugInstall
in Vim
To remove a plugin:
- Delete the Plug line(s) from your '.vimrc'
- Source the
.vimrc
- Call
:PlugClean