commit ef28fbb9c6e68805929ee1ab895fcd844ca71598 Author: Aurel Feer Date: Sat Nov 30 20:37:17 2024 +0100 initial commit diff --git a/bash/.bash_profile b/bash/.bash_profile new file mode 100644 index 0000000..f3073cf --- /dev/null +++ b/bash/.bash_profile @@ -0,0 +1,15 @@ +source ~/.bashrc + +export PS1="\[\033[1;31m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " + +export CLICOLOR=1 +export LSCOLORS=ExFxBxDxCxegedabagacad + +export PATH="$PATH":/home/aurelfeer/.local/bin + +alias ls='ls -AFh --color' +alias vim=nvim +if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then + tmux && exit +fi +neofetch diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..52c4816 --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,9 @@ +[user] + email = aurel.feer@gmail.com + name = Aurel Feer +[push] + default = simple +[credential] + helper = store +[init] + defaultBranch = main diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..851d3a8 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,7 @@ +# make escape in vim immediate when using tmux! +set -s escape-time 0 +# use vim navigation in tmux copy mode +setw -g mode-keys vi +# start windows at 1, not 0 +set -g base-index 1 + diff --git a/vim/.vimrc b/vim/.vimrc new file mode 100644 index 0000000..a2fefaf --- /dev/null +++ b/vim/.vimrc @@ -0,0 +1,4 @@ +set number +set rnu +set tabstop=4 +syntax on