source: dotfiles/guix/.bash_profile@ 68506e0

Last change on this file since 68506e0 was 68506e0, checked in by Mikhail Kirillov <w96k@…>, on Jan 11, 2020 at 10:11:34 AM

update bash

  • Property mode set to 100644
File size: 800 bytes
Line 
1# Add npm to PATH
2export PATH="~/.nodejs/bin/:$PATH"
3
4# Add .bin to PATH
5export PATH="~/.bin/:$PATH"
6
7# Add ruby gems to PATH
8export PATH=$PATH:/home/w96k/.gem/
9export PATH=$PATH:/home/w96k/.gem/ruby/2.5.0/bin/
10
11# Add nix to PATH
12export PATH=$PATH:/nix/var/nix/profiles/default/bin/
13
14# Add custom packages to guix PATH
15export GUIX_PACKAGE_PATH=~/.guix-packages
16
17export TERM=rxvt
18
19setxkbmap -layout us,ru -option grp:caps_toggle
20
21sh export GDK_CORE_DEVICE_EVENTS=1
22
23export ALTERNATE_EDITOR=""
24export EDITOR="emacsclient -t" # $EDITOR opens in terminal
25export VISUAL="emacsclient -c -a emacs" # $VISUAL opens in GUI mode
26
27[[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \
28 . /usr/share/bash-completion/bash_completion
29
30if [ -f .bashrc ]
31then
32 . .bashrc
33fi
Note: See TracBrowser for help on using the repository browser.