19 lines
569 B
Bash
19 lines
569 B
Bash
#!/usr/bin/env bash
|
|
# Originally setup based on the post https://medium.com/@webprolific/getting-started-with-dotfiles-43c3602fd789
|
|
|
|
# ln -sv “~/.dotfiles/runcom/.bash_profile” ~
|
|
# ln -sv “~/.dotfiles/runcom/.inputrc” ~
|
|
# ln -sv “~/.dotfiles/git/.gitconfig” ~
|
|
|
|
# Setup our apt repos
|
|
./apt-repos.sh
|
|
|
|
# Install a retro looking font that I like to use in my terminal
|
|
./install-fonts.sh
|
|
|
|
# Setup Vimrc using paste to merge our saved vimrc with
|
|
# system default
|
|
paste ~/.vimrc ./vimrc > ~/vimrc.new
|
|
mv ~/.vimrc ~/.vimrc.bak
|
|
mv ~/vimrc.new ~/.vimrc
|
|
./vim-setup.sh |