Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
This commit is contained in:
2022-01-06 18:42:28 +01:00
parent 4ddeb426d2
commit 99533ff670
6 changed files with 24 additions and 19 deletions

View File

@@ -27,8 +27,8 @@ for option in autocd globstar; do
done
# Locale
export LC_ALL=en_US.UTF-8
export LANG="en_US"
export LC_ALL=en_GB.UTF-8
export LANG="en_GB"
# Set the composer home.
export COMPOSER_HOME="$HOME/.composer"
@@ -41,7 +41,7 @@ function _prepend_path() {
}
# Construct $PATH
PATH="/usr/bin:/bin:/usr/sbin:/sbin"
PATH="/snap/bin:/usr/bin:/bin:/usr/sbin:/sbin"
[ -d /usr/local/sbin ] && _prepend_path "/usr/local/sbin"
[ -d /usr/local/bin ] && _prepend_path "/usr/local/bin"
[ -f /usr/bin/npm ] && _prepend_path "./node_modules/.bin" # Node.js
@@ -124,3 +124,7 @@ export PAGER='less'
true
export PATH="$HOME/.cargo/bin:$PATH"
# Disable microsoft telemetry
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export BASH_PROFILE_LOADED=1

View File

@@ -1,3 +1,5 @@
# https://github.com/janmoesen/tilde/blob/master/.bashrc
[ -n "$PS1" ] && source ~/.bash_profile;
[ -n "$BASH_PROFILE_LOADED" ] && source ~/.bash_profile;
[ -n "$PS1" ] && source ~/.bash_profile;

View File

@@ -15,7 +15,8 @@
editor = vim -f
# http://stackoverflow.com/questions/136178/git-diff-handling-long-lines
# If doesn't work, try: pager = less -+$LESS -FRX
pager = diff-highlight | less -RFX
pager = less -RFX
# pager = diff-highlight | less -RFX
# pager = less -r
autocrlf = false
safecrlf = false
@@ -99,3 +100,9 @@
templatedir = ~/dotfiles/resources/git-template
[pull]
ff = yes
#[commit]
# gpgSign = true
[tag]
forceSignAnnotated = true
[user]
signingkey = 6652F0F4418231A7

View File

@@ -1,3 +1,4 @@
# Python stuff
*.pyc
VENV
@@ -23,3 +24,4 @@ bower_components
# IDEs stuff
.idea
atlassian-ide-plugin.xml
.vscode