.bash_profile
1 | # Setups system and user profiles and related variables |
2 | # /etc/profile will be sourced by bash automatically |
3 | # Setups home environment profile |
4 | if [ -f ~/.profile ]; then source ~/.profile; fi |
5 | |
6 | # Honor per-interactive-shell startup file |
7 | if [ -f ~/.bashrc ]; then source ~/.bashrc; fi |
8 | export GTK_IM_MODULE=ibus |
9 | export XMODIFIERS=@im=ibus |
10 | export QT_IM_MODULE=ibus |
11 | export GUIX_GTK2_IM_MODULE_FILE=/home/tyreunom/.guix-profile/lib/gtk-2.0/2.10.0/immodules-gtk2.cache |
12 | export GUIX_GTK3_IM_MODULE_FILE=/home/tyreunom/.guix-profile/lib/gtk-3.0/3.0.0/immodules-gtk3.cache |
13 | export EDITOR=nvim |
14 |