-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
46 lines (35 loc) · 903 Bytes
/
.bashrc
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
XDG_CONFIG_HOME="$HOME/.config"
export XDG_CONFIG_HOME
export PATH="$HOME/.bin:$PATH"
if [ -f "$HOME/.bash_aliases" ]; then
source "$HOME/.bash_aliases"
fi
if [ -f "$HOME/.Xmodmap" ] && [ -z "$DISPLAY" ]; then
xmodmap "$HOME/.Xmodmap"
fi
#XMODIFIERS="@im=none"
#GTK_IM_MODULE=xim
#QT_IM_MODULE=xim
export GTK_IM_MODULE=fcitx
export XMODIFIERS=@im=fcitx
export QT_IM_MODULE=fcitx
#setxkbmap -option compose:ralt
export GZIP=-9
export USE_CCACHE=1
export EDITOR=vim
export PAGER=vimpager
export MAKEFLAGS="-j$(nproc)"
export STEAM_FRAME_FORCE_CLOSE=1
export DEVKITPRO=/opt/devkitpro
export DEVKITARM=$DEVKITPRO/devkitARM
export PATH=$PATH:$DEVKITARM/bin
export CTRULIB=/opt/devkitpro/libctru/
export PYENV_ROOT="$HOME/.pyenv"
#eval "$(ssh-agent -s)"