cswimr/home
Archived
Template
1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
9e4742f540
set EDITOR before aliases are set 2024-10-24 15:36:08 -04:00
2722b207ea
Revert "don't change editor based on ssh_connection status"
This reverts commit 6c8e1aed5b.
2024-10-24 15:35:11 -04:00

12
.zshrc
View file

@ -1,6 +1,14 @@
# Set Nimble's installation directory so it can be used in $PATH # Set Nimble's installation directory so it can be used in $PATH
export NIMBLE_DIR=$HOME/.nimble export NIMBLE_DIR=$HOME/.nimble
# Preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='/usr/bin/nvim'
else
export EDITOR='/usr/bin/nvim'
export BROWSER='zen-browser'
fi
# If you come from bash you might have to change your $PATH. # If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$HOME/.cargo/bin:/usr/local/go/bin:$HOME/go/bin:$NIMBLE_DIR/bin:$PATH export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$HOME/.cargo/bin:/usr/local/go/bin:$HOME/go/bin:$NIMBLE_DIR/bin:$PATH
@ -96,9 +104,7 @@ source $ZSH/oh-my-zsh.sh
# You may need to manually set your language environment # You may need to manually set your language environment
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
# Preferred editor for local and remote sessions
export EDITOR='/usr/bin/nvim'
export BROWSER='zen-browser'
# n³ settings # n³ settings
export NNN_ARCHIVE="\\.(7z|a|ace|alz|arc|arj|bz|bz2|cab|cpio|deb|gz|jar|lha|lz|lzh|lzma|lzo|rar|rpm|rz|t7z|tar|tbz|tbz2|tgz|tlz|txz|tZ|tzo|war|xpi|xz|Z|zip)$" export NNN_ARCHIVE="\\.(7z|a|ace|alz|arc|arj|bz|bz2|cab|cpio|deb|gz|jar|lha|lz|lzh|lzma|lzo|rar|rpm|rz|t7z|tar|tbz|tbz2|tgz|tlz|txz|tZ|tzo|war|xpi|xz|Z|zip)$"