Before installing, it's recommended to check whether the commands used in .bashrc exist on your system:
make checkcmdThis helps ensure there won’t be missing command errors after applying the configuration.
Back up your current configuration files before installing:
make backupThis command backs up the following files to ~/.dotfiles_backup:
.bashrc.bash_profile.vimrc.vim/(directory)
Install both bash and vim configurations:
make installTo install only the bash configurations:
make bashTo install only the vim configurations:
make vimRemove the installed symbolic links:
make clean| Command | Description |
|---|---|
make all |
The default task. Executes install. |
make install |
Installs both bash and vim configurations. |
make bash |
Installs only the bash configuration (.bashrc, .bash_profile). |
make vim |
Installs only the vim configuration (.vimrc, .vim/). |
make checkcmd |
Checks if the commands written in .bashrc exist on the system. |
make clean |
Removes the installed configuration files (symbolic links). |
make backup |
Backs up existing configuration files to the ~/.dotfiles_backup directory. |
make update |
Updates the repository to the latest version. |