Updated flake inputs
This commit is contained in:
@@ -4,7 +4,9 @@
|
||||
config = lib.mkIf config.movOpts.envConfig.zshConfig.shellAliases.enable {
|
||||
programs.zsh = {
|
||||
shellAliases = {
|
||||
grep = "grep --color=auto";
|
||||
grep = "rg";
|
||||
find = "fd";
|
||||
cat = "bat";
|
||||
yazi = "y";
|
||||
mv = "mv -v";
|
||||
cp = "cp -vr";
|
||||
@@ -28,6 +30,7 @@
|
||||
gpush = "gitpush_sfx";
|
||||
gpull = "gitpull_sfx";
|
||||
greb = "gitrebase_sfx";
|
||||
rsh = "$HOME/Coding/projects/rust/rsh/target/debug/rsh";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -37,7 +37,12 @@ in
|
||||
${shellsound} ${sndpath}/nvim.wav
|
||||
command nvim "$@"
|
||||
}
|
||||
neovide() {
|
||||
${shellsound} ${sndpath}/nvim.wav
|
||||
command neovide "$@"
|
||||
}
|
||||
alias vi="nvim"
|
||||
alias vide="neovide"
|
||||
kitty_theme() {
|
||||
if [ $TERM = "xterm-kitty" ]; then
|
||||
if [ -n "$SSH_CONNECTION" ]; then
|
||||
@@ -135,6 +140,10 @@ in
|
||||
touch $HOME/.zsh_history
|
||||
chmod 600 $HOME/.zsh_history
|
||||
fi
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
echo -en "\e]P0101010"
|
||||
setfont ter-v32b
|
||||
fi
|
||||
setopt APPEND_HISTORY # Append history to the history file (don't overwrite)
|
||||
setopt INC_APPEND_HISTORY # Append to the history file incrementally
|
||||
setopt SHARE_HISTORY # Share history between all zsh sessions
|
||||
|
||||
Reference in New Issue
Block a user