This commit is contained in:
Benjamin Palko 2024-07-11 09:12:39 -04:00
parent a8f6e2df65
commit 76d6787417
2 changed files with 27 additions and 0 deletions

12
.bashrc Normal file
View file

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

15
.zshrc Normal file
View file

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