Basic configuration files for vim
, bash
and tmux
.
Main goal for this repository is to achieve a convenient way to manage Linux servers without giving up my usual workflow.
Make sure to have stow
installed.
If you're new to using stow
, check out this article.
For sourcing the .bash_aliases
file, add this to the end of your .bashrc
:
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
$ git clone https://github.com/graves501/server-dotfiles ~/.dotfiles
$ cd ~/.dotfiles/stow_home
$ stow -vt ~ [application name e.g. vim]
To remove the configuration of an application:
$ cd ~/.dotfiles/stow_home
$ stow -D [application name e.g. vim]