This is my collection of personal dotfiles.
Installing the files needs the GNU stow
command.
- Clone this repo to ~/.dotfiles:
git clone https://github.com/gbirke/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
./install_all.sh
You may choose a different name than .dotfiles, but make sure it's below your home directory.
Otherwise you have to edit the install script to use the --target DIR
parameter of stow
.
stow ack
stow bash
stow ctags
stow git
stow vim
stow zsh
First, install oh-my-fish, powerline fonts for the bob-the-fish theme, and fzf
rm -rf ~/.config/omf && stow omf fish
I intentionally left out the name and email address from the git configuration because I use different ones on work and private machines.
I add the file ~/.gituser
with the following contents:
[user]
name = Gabriel Birke
email = gabriel.birke@gmail.com
# vim: ft=gitconfig
If you want to use the vim configuration with the VimPlug package manager, use the following commands:
install_vimplug.sh
stow vim-plug
vim -c PlugInstall
Thanks to Brandon Invergo who introduced me to this easy method of managing the dotfiles.