Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
388 B

  1. # dotfiles
  2. dot_dir=~/linux-config
  3. dotfiles="bashrc gitconfig inputrc vimrc"
  4. cd $dot_dir
  5. for dotfile in $dotfiles; do
  6. rm ~/.$dotfile
  7. ln -s $dot_dir/.$dotfile ~/.$dotfile
  8. done
  9. # terminator
  10. dot_dir=~/linux-config
  11. term_dir=~/.config/terminator
  12. pc=$(hostname)
  13. rm "$dot_dir"/"$pc"-terminator
  14. cp "$term_dir"/config $dot_dir/"$pc"-terminator
  15. # UltiSnips
  16. ln -s $dot_dir/UltiSnips ~/.vim