From bd8919afb109efa0a92def766aca81f1e2e146fa Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 14 Jun 2025 10:12:33 +0530 Subject: Update neovim, neomutt, and shell configurations --- src/config/files/shell/bashrc.d/10-export.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/config/files/shell/bashrc.d/10-export.sh (limited to 'src/config/files/shell/bashrc.d/10-export.sh') diff --git a/src/config/files/shell/bashrc.d/10-export.sh b/src/config/files/shell/bashrc.d/10-export.sh new file mode 100644 index 0000000..e6c6e28 --- /dev/null +++ b/src/config/files/shell/bashrc.d/10-export.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +export DISABLE_MAGIC_FUNCTIONS=true +export BROWSER=/usr/bin/firefox +export EDITOR="/usr/bin/nvim" +export PATH="$HOME/.local/bin:$PATH" +export GPG_TTY=$(tty) +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +source <(kubectl completion bash) +source <(fzf --bash) -- cgit