initial commit
This commit is contained in:
commit
ef28fbb9c6
15
bash/.bash_profile
Normal file
15
bash/.bash_profile
Normal 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
9
git/.gitconfig
Normal 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
7
tmux/.tmux.conf
Normal 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
4
vim/.vimrc
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
set number
|
||||||
|
set rnu
|
||||||
|
set tabstop=4
|
||||||
|
syntax on
|
||||||
Loading…
Reference in New Issue
Block a user