From a3d72928be9c623a3e69436f9badb12bcb4c8d18 Mon Sep 17 00:00:00 2001 From: Jim Richter Date: Fri, 23 Apr 2021 15:23:37 +0200 Subject: [PATCH] feat: add deno to path --- configs/.zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configs/.zshrc b/configs/.zshrc index 04d5f85..2dd38fc 100644 --- a/configs/.zshrc +++ b/configs/.zshrc @@ -1,5 +1,3 @@ -# INITILIZATION ## - # p10k if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" @@ -29,6 +27,9 @@ export PATH="$PATH:$HOME/.local/bin" export PATH="$PATH:$HOME/bin" export PATH="$PATH:$HOME/go/bin" +export DENO_INSTALL="/home/jim/.deno" +export PATH="$DENO_INSTALL/bin:$PATH" + ## Setup VIM export EDITOR="nvim" export VIMRUNTIME="~/bin/neovim/runtime"