Explorar el Código

quick updates

rain.esteva hace 1 año
padre
commit
1fc61e1637
Se han modificado 1 ficheros con 4 adiciones y 3 borrados
  1. 4 3
      setup.sh

+ 4 - 3
setup.sh

@@ -17,10 +17,14 @@ function add_string_to_file() {
     fi
 }
 
+# Bashrc
 add_string_to_file "$HOME/.bashrc" "# Setup Aliases"
 add_string_to_file "$HOME/.bashrc" "source $HOME/dots/aliases" && source "$HOME/.bashrc"
 add_string_to_file "$HOME/.bashrc" "source $HOME/dots/seafly-prompt" && source "$HOME/.bashrc"
 
+add_string_to_file "$HOME/.bashrc" "# Scripts"
+add_string_to_file "$HOME/.bashrc" "bash $HOME/dots/life.sh 1993-07-21 control" && source "$HOME/.bashrc"
+
 # NVIM
 mkdir -p "$HOME/.config/nvim/"
 cp "./nvim" "$HOME/.config/nvim/init.vim"
@@ -28,6 +32,3 @@ cp "./nvim" "$HOME/.config/nvim/init.vim"
 # TMUX
 cp "./tmux.conf" "$HOME/.tmux.conf"
 
-# Scripts
-add_string_to_file "$HOME/.bashrc" "# Scripts"
-add_string_to_file "$HOME/.bashrc" "bash $HOME/dots/life.sh 1993-07-21 control" && source "$HOME/.bashrc"