From 603bb38524b0d2e03607e9711d6364e9e0d77d54 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Thu, 24 Jul 2025 15:20:50 +0200 Subject: [PATCH] Added aliases for Neovim --- zsh/.oh-my-zsh/custom/aliases.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/.oh-my-zsh/custom/aliases.zsh b/zsh/.oh-my-zsh/custom/aliases.zsh index 37b2849..74151a9 100644 --- a/zsh/.oh-my-zsh/custom/aliases.zsh +++ b/zsh/.oh-my-zsh/custom/aliases.zsh @@ -27,6 +27,10 @@ alias cat='bat --style header --style snip --style changes --style header --page # Replace df command tool alias df='duf' +# Replace Vim implementation +alias vi='nvim' +alias vim='nvim' + # Replace grep command tool alias grep='ugrep --color=auto' alias egrep='ugrep -E --color=auto'