diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..99ff7f2 --- /dev/null +++ b/.bashrc @@ -0,0 +1,12 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +PS1='[\u@\h \W]\$ ' + +export EDITOR=nvim diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..8989aa6 --- /dev/null +++ b/.zshrc @@ -0,0 +1,15 @@ +# Lines configured by zsh-newuser-install +HISTFILE=~/.histfile +HISTSIZE=1000 +SAVEHIST=1000 +setopt beep +bindkey -e +# End of lines configured by zsh-newuser-install +# The following lines were added by compinstall +zstyle :compinstall filename '/home/benjamin/.zshrc' + +autoload -Uz compinit +compinit +# End of lines added by compinstall + +eval "$(starship init zsh)"