Configuration files for my development environment.
To set up your environment with these dotfiles, follow these steps:
-
Clone the repository to your home directory:
git clone https://github.com/inf1nite-lo0p/dotfiles.git ~/dotfiles
-
Navigate to the
dotfiles
directory:cd ~/dotfiles
-
Run the setup script to create the necessary symbolic links:
./setup.sh
-
Create
.extra
file# Git credentials # Not in the repository, to prevent people from accidentally committing under my name GIT_AUTHOR_NAME="Your name" GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME" git config --global user.name "$GIT_AUTHOR_NAME" GIT_AUTHOR_EMAIL="[email protected]" GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL" git config --global user.email "$GIT_AUTHOR_EMAIL"