From e9bd585c605b376633a309c9c59bc5f3096934b9 Mon Sep 17 00:00:00 2001 From: pmcc Date: Tue, 5 Aug 2025 06:35:33 -0400 Subject: [PATCH 1/2] Switch to zsh --- .bashrc => .zshrc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename .bashrc => .zshrc (92%) diff --git a/.bashrc b/.zshrc similarity index 92% rename from .bashrc rename to .zshrc index 0099360..912ca3d 100644 --- a/.bashrc +++ b/.zshrc @@ -1,5 +1,5 @@ # -# ~/.bashrc +# ~/.zshrc # # If not running interactively, don't do anything @@ -8,9 +8,8 @@ alias ls='ls --color=auto' alias grep='grep --color=auto' alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' -PS1='[\u@\h \W]\$ ' -eval "$(starship init bash)" +eval "$(starship init zsh)" alias reboot-to-windows='sudo grub-reboot "Windows Boot Manager (on /dev/nvme1n1p1)" && sudo reboot' export PATH=~/.npm-global/bin:~/.local/bin:$PATH From dd4b99d5d28245ddfe06b52521f9426f1984ad12 Mon Sep 17 00:00:00 2001 From: Pierre-Marie Charavel Date: Tue, 5 Aug 2025 07:36:12 -0400 Subject: [PATCH 2/2] zsh keybinds --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 912ca3d..65e3707 100644 --- a/.zshrc +++ b/.zshrc @@ -5,6 +5,9 @@ # If not running interactively, don't do anything [[ $- != *i* ]] && return +bindkey "^A" beginning-of-line +bindkey "^E" end-of-line + alias ls='ls --color=auto' alias grep='grep --color=auto' alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'