initial commit

This commit is contained in:
Aurel Feer 2024-11-30 20:37:17 +01:00
commit ef28fbb9c6
4 changed files with 35 additions and 0 deletions

15
bash/.bash_profile Normal file
View File

@ -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

9
git/.gitconfig Normal file
View File

@ -0,0 +1,9 @@
[user]
email = aurel.feer@gmail.com
name = Aurel Feer
[push]
default = simple
[credential]
helper = store
[init]
defaultBranch = main

7
tmux/.tmux.conf Normal file
View File

@ -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

4
vim/.vimrc Normal file
View File

@ -0,0 +1,4 @@
set number
set rnu
set tabstop=4
syntax on