Line | |
---|
1 | # Add npm to PATH
|
---|
2 | export PATH="~/.nodejs/bin/:$PATH"
|
---|
3 |
|
---|
4 | # Add .bin to PATH
|
---|
5 | export PATH="~/.bin/:$PATH"
|
---|
6 |
|
---|
7 | # Add ruby gems to PATH
|
---|
8 | export PATH=$PATH:/home/w96k/.gem/
|
---|
9 | export PATH=$PATH:/home/w96k/.gem/ruby/2.5.0/bin/
|
---|
10 |
|
---|
11 | # Add nix to PATH
|
---|
12 | export PATH=$PATH:/nix/var/nix/profiles/default/bin/
|
---|
13 |
|
---|
14 | # Add custom packages to guix PATH
|
---|
15 | export GUIX_PACKAGE_PATH=~/.guix-packages
|
---|
16 |
|
---|
17 | # Proxy
|
---|
18 | export http_proxy=http://127.0.0.1:9050/
|
---|
19 | export https_proxy=$http_proxy
|
---|
20 |
|
---|
21 | setxkbmap -layout us,ru -option grp:caps_toggle
|
---|
22 |
|
---|
23 | if [ -f .bashrc ]
|
---|
24 | then
|
---|
25 | . .bashrc
|
---|
26 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.