From 76d678741796af8015bc05af470fe8fa73f1d78a Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Thu, 11 Jul 2024 09:12:39 -0400 Subject: [PATCH] rc files --- .bashrc | 12 ++++++++++++ .zshrc | 15 +++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .bashrc create mode 100644 .zshrc 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)"