From 1c19ba51350634a76bad379cd9d0a1a1342dd345 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 17 Mar 2025 21:15:45 +0100 Subject: [PATCH] add neovim editor as $EDITOR --- .bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.bashrc b/.bashrc index 869cead..01adb1e 100644 --- a/.bashrc +++ b/.bashrc @@ -20,6 +20,7 @@ PS1="$PS1"'\[\033[01;34m\]\w' # working directory PS1="$PS1"'\[\033[01;93m\]$(__git_ps1)' # github branch PS1="$PS1"'\[\033[00m\]\$ ' # shell sign +export EDITOR=nvim export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' # coloured GCC warnings and errors eval "$(_AUTO_CPUFREQ_COMPLETE=bash_source auto-cpufreq)"