-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.profile
77 lines (62 loc) · 2.17 KB
/
.profile
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
export VISUAL=vim
export EDITOR=vim
export TERMINAL=st
export GITLAB_HOME=/srv/gitlab
# Disable accessibility processes of gtk dependend application and DE.
export NO_AT_BRIDGE=1
# export GTK_THEME=Adwaita:dark
export QT_QPA_PLATFORMTHEME="qt5ct"
# export QT_SCALE_FACTOR=1
export QT_AUTO_SCREEN_SCALE_FACTOR=1
export GOPATH="$HOME/.local/go"
# Highlighting for 'less'
export MANROFFOPT="-c"
export LESS_TERMCAP_mb=$'\e[0;33m'
export LESS_TERMCAP_md=$'\e[0;33m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_us=$'\e[0;1;38m'
export LESS_TERMCAP_ue=$'\e[0m'
export LESS_TERMCAP_so=$'\e[0;7;35m'
export LESS_TERMCAP_se=$'\e[0m'
# This makes symlinks work on windows with git-bash if developer mode is
# enabled or the process is run as admin.
export MSYS=winsymlinks:nativestrict
export FZF_DEFAULT_COMMAND="find . -type f -not -path '*/\.git/*' -not -path '*/\.cargo/*' -not -path '*/\.ccls-cache/*' -not -path '*/\.cache/*' ! -path '*/build/*'"
export FZF_COLORS="fg:-1,fg+:-1,hl:yellow,hl+:yellow:reverse,border:gray,spinner:-1,header:blue,info:green,pointer:white,marker:blue,prompt:white:regular,gutter:-1"
export FZF_DEFAULT_OPTS="\
--prompt '' \
--pointer '>' \
--height 50% \
--reverse \
--info inline \
--color=$FZF_COLORS \
--bind alt-a:select-all \
--bind ctrl-l:toggle-preview \
--preview-window hidden \
"
if [ -d "$HOME/.cargo/bin" ] ; then
PATH="$HOME/.cargo/bin:$PATH"
fi
if [ -d "$HOME/.local/go/bin" ] ; then
PATH="$HOME/.local/go/bin:$PATH"
fi
if [ -d "$HOME/.local/wine_bin" ] ; then
PATH="$HOME/.local/wine_bin:$PATH"
fi
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# if [[ "$(tty)" = "/dev/tty1" ]]; then
# pgrep Xorg || startx
# fi