From 806d4a0dbaf6fa2271c40d6d4031a51a2038d76b Mon Sep 17 00:00:00 2001 From: Snoweuph Date: Mon, 13 May 2024 19:17:58 +0200 Subject: [PATCH] Add Submodule --- .bashrc | 5 +++-- .config/oh-my-bash-custom/.gitkeep | 1 + .gitignore | 3 +++ .gitmodules | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .config/oh-my-bash-custom/.gitkeep diff --git a/.bashrc b/.bashrc index 698d913..260e22e 100644 --- a/.bashrc +++ b/.bashrc @@ -3,5 +3,6 @@ case $- in *) return;; esac -# Path to the oh-my-bash installation. -export OSH='/home/snoweuph/.config/.oh-my-bash' +# Oh My bash Config +export OSH="$HOME/.config/oh-my-bash" +export OSH_CUSTOM="$HOME/.config/oh-my-bash-custom" diff --git a/.config/oh-my-bash-custom/.gitkeep b/.config/oh-my-bash-custom/.gitkeep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/.config/oh-my-bash-custom/.gitkeep @@ -0,0 +1 @@ + diff --git a/.gitignore b/.gitignore index f7574e4..9e05b1f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,6 @@ # Include bash config !.bashrc +!.config/oh-my-bash/**/* +!.config/oh-my-bash-custom/**/* + diff --git a/.gitmodules b/.gitmodules index e79e8f9..0586fd2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "Oh My Bash"] - path = .config/.oh-my-bash + path = .config/oh-my-bash url = https://github.com/ohmybash/oh-my-bash.git