commit 46e27bd8d75421862dada02d1d27de77fb8c594f Author: Snoweuph Date: Mon May 13 19:11:17 2024 +0200 init diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..698d913 --- /dev/null +++ b/.bashrc @@ -0,0 +1,7 @@ +case $- in + *i*) ;; + *) return;; +esac + +# Path to the oh-my-bash installation. +export OSH='/home/snoweuph/.config/.oh-my-bash' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7574e4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Ignore Everything By Default +* + +# Include Git Files +!.gitignore +!.gitmodules + +# Include bash config +!.bashrc diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e79e8f9 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Oh My Bash"] + path = .config/.oh-my-bash + url = https://github.com/ohmybash/oh-my-bash.git