Skip to content

Commit

Permalink
2024-01-29 16:15:11 dotfiles updates
Browse files Browse the repository at this point in the history
  • Loading branch information
psadi committed Jan 29, 2024
1 parent a96b000 commit 8b3317a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions zsh/zsh/cmd/command.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ if command -v bat &> /dev/null; then
alias cat="bat -p"
export MANPAGER="bat"
fi

if [ -d /opt/nvim-linux64 ]; then
export PATH=$PATH:/opt/nvim-linux64/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/nvim-linux64/lib
export MANPATH=$MANPATH:/opt/nvim-linux64/man
fi
5 changes: 2 additions & 3 deletions zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ source "${ZSH_DOTFILES_DIR}/${OSTYPE}.zshrc"

# Load Plugins
#---------------------------------------------
for z in `ls ${_ZSH_PLUGINS_PATH}`;
do
for z in `ls ${_ZSH_PLUGINS_PATH}`;
do
if [ -f "${_ZSH_PLUGINS_PATH}/${z}/${z}.zsh" ]; then
source "${_ZSH_PLUGINS_PATH}/${z}/${z}.zsh";
fi
Expand All @@ -67,4 +67,3 @@ source ${_ZSH_COMPLETIONS_PATH}/completions.zsh
# Load Tools
#---------------------------------------------
type LoadTools &>/dev/null && LoadTools

0 comments on commit 8b3317a

Please sign in to comment.