-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_export
30 lines (20 loc) · 982 Bytes
/
bash_export
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# don't put duplicate lines in the history. See bash(1) for more options
# don't overwrite GNU Midnight Commander's setting of `ignorespace'.
export HISTCONTROL=ignoreboth:
export HISTSIZE=100000
# local personal scripts
export PATH="/home/andreas/bin:$PATH"
# if there are packages installed in npms bin dir include them too
export PATH="/home/andreas/.share/npm/bin/:$PATH"
# let me execute locally installed scripts from npm to avoid -g
export PATH="node_modules/.bin/:$PATH"
# locally installed bins to .local/usr/local/bin
export PATH="/home/andreas/.local/usr/local/bin:$PATH"
# add scripts installed using cpan
export PATH="/home/andreas/perl5/bin:$PATH"
#export LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/lib
# NOTE: editor global variable
export EDITOR=/usr/bin/vim
export QUILT_PATCHES=debian/patches
export PROMPT_DIRTRIM=2
export PERL5LIB="lib:/home/andreas/perl5/lib/perl5/x86_64-linux-gnu-thread-multi:/home/andreas/perl5/lib/:/home/andreas/perl5/lib/perl5/"