-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.bashrc
46 lines (34 loc) · 999 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
# shellcheck shell=sh
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
export EDITOR=vim;
export PS1="\[\e[31m\]\u\[\e[m\]\[\e[34m\]@\[\e[m\]\[\e[31m\]\h\[\e[m\]\[\e[34m\]:\[\e[m\]\[\e[31m\]\w\[\e[m\]\[\e[34m\]\\$\[\e[m\] "
HISTSIZE=10000
HISTFILESIZE=10000
shopt -s cdspell
shopt -s nocasematch
if [ -x "$(command -v brew)" ]; then
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
fi
if [ -x "$(command -v thefuck)" ]; then
eval $(thefuck --alias)
fi
#bash-insulter
if [ -f /etc/bash.command-not-found ]; then
. /etc/bash.command-not-found
fi
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
#neofetch
export PATH="$PATH:~/Chromium Builds/depot_tools"
export PATH=$PATH:/usr/local/sbin
export PATH=$PATH:~/git-clones/flutter/bin
export PATH=$PATH:/Library/TeX/texbin
export PATH=$PATH:/Applications/MATLAB_R2019b.app/bin
export PATH=$PATH:~/.local/bin
SHELL_SESSION_HISTORY=0