From 6c0ed3820cc15700c7ba5668ce4dd32bf58b325c Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Mon, 4 Aug 2025 19:08:24 -0400 Subject: [PATCH] `refactor: Set default editor and provider in zshrc file` This commit sets the default editor to nvim for various shell configurations, adds a new environment variable `PROVIDER` to use ollama as the AI provider for ai-commit, and makes no changes to alias definitions. --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 652e4ba..5266f7e 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -5,6 +5,9 @@ export EDITOR=nvim export SUDO_EDITOR=nvim export VISUAL=nvim +# Set PROVIDER for ai-commit +export PROVIDER=ollama + # Alias definitions alias ls='ls --color=auto' alias ll='ls -lah'