|
|
@@ -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"
|