<root> / profile (7adb8a2791758bac3d1c0c807ef37cbf4f026bc7) (1,347B) (mode 100644) [raw]
# ==============================================================================
# script load indicator

export PROFILE_IS_LOADED=yes

# ==============================================================================
# load bash configuration for this machine
# it is loaded at the very beginning to allow overwriting of its settings

# source ~/.bashrc file if it exists and we are actually using bash
if [ -f ~/.bashrc -a "$(basename $SHELL)" = bash ]; then
    . ~/.bashrc
fi

# ==============================================================================
# $PATH additions

# add ~/bin to $PATH
export PATH="$HOME/bin:$PATH"

# ==============================================================================
# less

# ignore case in search pattern unless it contains at least one uppercase letter
export LESS="$LESS --ignore-case --RAW-CONTROL-CHARS"

# make less search for its binary configuration files at ~/.less on all
# platforms
export LESSKEY="$HOME/.less"

# ==============================================================================
# load profile local settings for this machine

# source ~/.profile_local file if it exists
if [ -f ~/.profile_local ]; then
    source ~/.profile_local
fi

# ==============================================================================

# vim: set filetype=sh textwidth=80 syntax+=.autofold :
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/dotfiles

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/dotfiles

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master