diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..3dfcac7 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,9 @@ +[user] + name = Mohammad Rafiq + email = mohammadrafiq567@gmail.com +[init] + defaultBranch = main +[credential] + helper = store +[push] + autoSetupRemote = true \ No newline at end of file diff --git a/.profile b/.profile new file mode 100644 index 0000000..d6f1da4 --- /dev/null +++ b/.profile @@ -0,0 +1,15 @@ +# ~/.profile: executed by Bourne-compatible login shells. + +if [ "$BASH" ]; then + if [ -f ~/.bashrc ]; then + . ~/.bashrc + fi +fi + +# Rust/Cargo +mesg n 2> /dev/null || true +. "$HOME/.cargo/env" + +# NVM +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"