Skip to content

Commit

Permalink
add install comands
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusvellone committed Aug 9, 2019
1 parent aa53e1b commit 7e6556d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion run/fish.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
echo "Running fish dotfile configuration"

sudo apt-get install -y fish

mkdir -p ~/.config/fish
echo "source $PWD/fish/main.fish" > $HOME/.config/fish/config.fish

2 changes: 2 additions & 0 deletions run/git.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
echo "Running git dotfile configuration"

sudo apt-get install -y git

ln -fs $PWD/git/.gitconfig $HOME/.gitconfig
2 changes: 2 additions & 0 deletions run/tmux.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
echo "Running tmux configuration"

sudo apt-get install -y tmux

TPM_DIR=~/.tmux/plugins/tpm

if [ ! -d "$TPM_DIR" ]; then
Expand Down
2 changes: 2 additions & 0 deletions run/vim.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
echo "Running vim dotfile configuration"

sudo apt-get install -y neovim

mkdir -p $HOME/.config/nvim
ln -fs $PWD/vim/init.vim $HOME/.config/nvim/init.vim

0 comments on commit 7e6556d

Please sign in to comment.