From 9e6e35d401fd2ca811721928bf194fcb78b30438 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 4 Jul 2021 17:31:53 +0100 Subject: [PATCH] Add aliases for mutt and nnn --- .config/.aliasrc | 2 ++ .profile | 7 ++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.config/.aliasrc b/.config/.aliasrc index 61a8e06..a9cb32b 100644 --- a/.config/.aliasrc +++ b/.config/.aliasrc @@ -16,6 +16,8 @@ alias \ e="$EDITOR" \ f="$FILE" \ g="git" \ + m="neomutt" \ + n="$FILE" \ v="$EDITOR" # XDG fixes diff --git a/.profile b/.profile index 83cd4e4..5fde13f 100644 --- a/.profile +++ b/.profile @@ -1,9 +1,10 @@ # Default applications -export EDITOR="nvim" -export TERMINAL="alacritty" export BROWSER="firefox" -export READER="zathura" +export EDITOR="nvim" +export FILE="nnn" export PAGER="less" +export READER="zathura" +export TERMINAL="alacritty" # XDG Base Directories export XDG_CACHE_HOME="$HOME/.cache"