-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.bash_profile
More file actions
34 lines (26 loc) · 786 Bytes
/
Copy path.bash_profile
File metadata and controls
34 lines (26 loc) · 786 Bytes
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
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
# Add directories to $PATH variable
export PATH="$PATH:$HOME/bin"
# `grep default` highlight color
export GREP_COLORS="mt=1;32"
# EDITOR
export EDITOR="nvim"
export SUDO_EDITOR="nvim"
export VISUAL="nvim"
# Colored man
export MANPAGER="less -R --use-color -Dd+g -Du+b"
# pfetch:
# Which information to display.
# NOTE: If 'ascii' will be used, it must come first.
# Default: "ascii title os host kernel uptime pkgs memory"
# Valid: space separated string
#
# OFF by default: shell editor wm de palette
export PF_INFO="ascii os kernel uptime pkgs shell editor wm"
# Override style of Qt applications
export QT_STYLE_OVERRIDE="kvantum"
# bat: set config file path
export BAT_CONFIG_PATH="/home/brainfuck/.config/bat/config"