Last active
October 2, 2016 22:52
-
-
Save strohel/85d757604206e07a6969592f48e6e4a5 to your computer and use it in GitHub Desktop.
$HOME -> .configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This line was appended by KDE | |
# Make sure our customised gtkrc file is loaded. | |
export GTK2_RC_FILES="$HOME/.gtkrc-2.0:$HOME/.kde/share/config/gtkrc-2.0:/etc/gtk-2.0/gtkrc" | |
export EDITOR="mcedit" | |
export PATH=$KDEDIR/bin:/usr/lib/ccache/bin:$HOME/stuff/skripty:$HOME/downloads/google_appengine:$PATH | |
export PKG_CONFIG_PATH=$HOME/kde/lib/pkgconfig | |
export VALGRIND_OPTS="--num-callers=50 --suppressions=$HOME/projekty/kde-dev-scripts/kde.supp" | |
alias man='LC_ALL=C LANG=C man' | |
alias open='xdg-open' | |
# from https://qtconference.kdab.com/sites/default/files/slides/Multithreading_Presentation.pdf | |
alias helgrind="QT_NO_GLIB=1 valgrind --tool=helgrind --track-lockorders=no" | |
# Spaceknow | |
alias pyunittest="python -m unittest -v" | |
#export PYTHONPATH="$HOME/work/backend/python:$HOME/work/research:$HOME/downloads/google_appengine:$PYTHONPATH" | |
export PYTHONPATH="$HOME/work/backend/python:$HOME/downloads/google_appengine:$PYTHONPATH" | |
PATH="$HOME/work/backend/scripts:$PATH" | |
export SPACEKNOW_EMAIL="***" | |
export SPACEKNOW_PASSWORD="***" # unsecure!!! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = [email protected] | |
signingkey = 4FCBEE42 | |
[color] | |
ui = auto | |
[color "diff"] | |
whitespace = red reverse | |
[push] | |
default = tracking | |
[core] | |
editor = kwrite-silent | |
[branch] | |
autosetuprebase = local | |
[sendemail] | |
smtpencryption = tls | |
smtpserver = smtp.gmail.com | |
smtpserverport = 25 | |
smtpuser = [email protected] | |
suppresscc = self | |
[merge] | |
conflictstyle = diff3 | |
tool = meld | |
[diff] | |
compactionHeuristic = true | |
algorithm = histogram | |
[url "git://anongit.kde.org/"] | |
insteadOf = kde: | |
[url "[email protected]:"] | |
pushInsteadOf = kde: | |
[rerere] | |
enabled = true | |
[filter "lfs"] | |
smudge = git-lfs smudge -- %f | |
required = true | |
clean = git-lfs clean -- %f | |
[pager] | |
log = diff-highlight | less | |
show = diff-highlight | less | |
diff = diff-highlight | less | |
[interactive] | |
diffFilter = diff-highlight |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment