From b78dea4999ecf07a3943c6d27acf1d36cb1392e8 Mon Sep 17 00:00:00 2001 From: Sarthak Date: Fri, 13 Mar 2026 18:11:17 +0530 Subject: [PATCH] Change bashrc files and install script --- install.sh | 6 +++--- shell/{bash => bashrc} | 0 shell/{zsh => zshrc} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename shell/{bash => bashrc} (100%) rename shell/{zsh => zshrc} (100%) diff --git a/install.sh b/install.sh index 7e82f02..e06891f 100755 --- a/install.sh +++ b/install.sh @@ -9,12 +9,12 @@ rm -rf ~/.tmux.conf rm -rf ~/.tmux.conf.local rm -rf ~/.config/nvim -ln -s -f ${dotfilesDir}/.bashrc ~/.bashrc -ln -s -f ${dotfilesDir}/.zshrc ~/.zshrc +ln -s -f ${dotfilesDir}/shell/bashrc ~/.bashrc +ln -s -f ${dotfilesDir}/shell/zshrc ~/.zshrc ln -s -f ${dotfilesDir}/tmux/tmux.conf ~/.tmux.conf ln -s -f ${dotfilesDir}/tmux/tmux.conf.local ~/.tmux.conf.local ln -s -f ${dotfilesDir}/nvim ~/.config/nvim -ln -s -f ${dotfilesDir}/starship.toml ~/.config/starship.toml +ln -s -f ${dotfilesDir}/shell/starship.toml ~/.config/starship.toml # # echo "Installing fzf" # git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf diff --git a/shell/bash b/shell/bashrc similarity index 100% rename from shell/bash rename to shell/bashrc diff --git a/shell/zsh b/shell/zshrc similarity index 100% rename from shell/zsh rename to shell/zshrc