diff options
author | Thanos Apollo <[email protected]> | 2023-02-15 03:32:17 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-02-15 03:32:17 +0200 |
commit | 833515fa053c912c3509ec2bb02b5fec18ef6db1 (patch) | |
tree | 3d3c9ea86fd6fa7b643c00b74488d8c0be9382d9 /shells.org | |
parent | 0cdb06c302c94188c25936ae794689819886f23d (diff) |
shells: Add node_modules to path
Diffstat (limited to 'shells.org')
-rw-r--r-- | shells.org | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -63,9 +63,10 @@ #+begin_src shell :tangle .shells/exports.sh # Export 'SHELL' to child processes. Programs such as 'screen' # honor it and otherwise use /bin/sh. - + path+=('~/node_modules/.bin') export SHELL - export PATH="$PATH:~/.local/share/flatpak/exports/bin/" + export PATH + if [[ $- != *i* ]] then |