-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
123 lines (99 loc) · 3.4 KB
/
.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# If not running interactively, don't do anything.
[[ $- != *i* ]] && return
# Path
export PATH=$PATH:/home/tom/.local/bin
# Vim as default editor.
export EDITOR="vim"
export VISUAL="vim"
export PAGER="most"
# export MANPAGER="sh -c 'col -bx | bat -l man -p'"
# Load bash aliases.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# Set history behavior and size.
shopt -s histappend # Append to the history file, don't overwrite it.
HISTSIZE=5000
HISTFILESIZE=10000
# Check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# The pattern "**" will match all files and zero or more (sub)directories.
shopt -s globstar
# Space expansion magic
# e.g. !echo<space> expands to the last command starting with "echo"
bind Space:magic-space
# TAB completion:
# Complete the first match, then cycle throug the others.
bind "TAB:menu-complete"
# But still show the list of all matches.
bind "set show-all-if-ambiguous on"
# First tab to only complete the common prefix.
bind "set menu-complete-display-prefix on"
# Enable bash completions (including git completions if available):
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
# Prompt (with git branch and state):
export GIT_PS1_SHOWDIRTYSTATE=1
PS1='\W$(__git_ps1 ":%s")\$ '
#PS1='\W\$ '
# Make less more friendly for non-text input files:
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# Virtualenvwrapper
#export WORKON_HOME=~/.virtualenvs
#export VIRTUALENVWRAPPER_PYTHON='/usr/bin/python3'
#source /usr/local/bin/virtualenvwrapper.sh
#source virtualenvwrapper.sh
scp-umime() { scp "$1" [email protected]:ftp/umimefakta.cz/webroot/admxtrs/tomeff; }
scp-umime-lab() { scp "$1" [email protected]:ftp/umimefakta.cz/webroot/admxtrs/tomeff/labs; }
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
#__conda_setup="$('/home/tom/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
#if [ $? -eq 0 ]; then
# eval "$__conda_setup"
#else
# if [ -f "/home/tom/miniconda3/etc/profile.d/conda.sh" ]; then
# . "/home/tom/miniconda3/etc/profile.d/conda.sh"
# else
# export PATH="/home/tom/miniconda3/bin:$PATH"
# fi
#fi
#unset __conda_setup
## <<< conda initialize <<<
conda-init() {
__conda_setup="$('/home/tom/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/tom/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/tom/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/tom/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
}
workon-analysis() {
cd "/home/tom/repos/analysis"
source .venv/bin/activate
}
workon-content() {
cd "/home/tom/repos/content"
source .venv/bin/activate
# hack to make umistats available, better solution would be to install it into the venv
export PYTHONPATH=/home/tom/repos/analysis:$PYTHONPATH
}
workon-progressbar() {
cd "/home/tom/repos/progressbar"
source .venv/bin/activate
}
#audio-length() {
# mp3info -p '%S\n' *.mp3 | awk '{s+=$1} END {printf"%d:%02d:%02d\n",s/3600,s%3600/60,s%3600%60}'
#}
# Needed temporarily, see https://jupyter-core.readthedocs.io/en/stable/changelog.html
export JUPYTER_PLATFORM_DIRS=1