From 6d675d03b484b19d89cf44e555bcc05f4a37475e Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Mon, 22 Jan 2024 14:04:24 -0500 Subject: [PATCH] Tabs in .gitconfig --- fake_home/.config/starship.toml | 1 - fake_home/.gitconfig | 20 ++++++++++---------- fake_home/.zshrc | 7 ++----- 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/fake_home/.config/starship.toml b/fake_home/.config/starship.toml index 2138f06..f91c507 100644 --- a/fake_home/.config/starship.toml +++ b/fake_home/.config/starship.toml @@ -1,4 +1,3 @@ -add_newline = true format = """ $git_status\ ${custom.username}\ diff --git a/fake_home/.gitconfig b/fake_home/.gitconfig index 715de27..d1ee930 100644 --- a/fake_home/.gitconfig +++ b/fake_home/.gitconfig @@ -3,27 +3,27 @@ email = sage@sagev.space [core] - autocrlf = input - excludesfile = ~/.gitignore - hooksPath = ~/.githooks + autocrlf = input + excludesfile = ~/.gitignore + hooksPath = ~/.githooks [credential] - helper = store + helper = store [push] - default = current - followTags = true + default = current + followTags = true [help] - autocorrect = 1 + autocorrect = 1 [include] - path = ~/.gitlocal + path = ~/.gitlocal [init] - defaultBranch = main + defaultBranch = main [commit] - verbose = true + verbose = true [pull] rebase = false [protocol "file"] diff --git a/fake_home/.zshrc b/fake_home/.zshrc index 1e4f796..a2dc867 100644 --- a/fake_home/.zshrc +++ b/fake_home/.zshrc @@ -38,7 +38,7 @@ fi export PATH=~/.bin:$HOME/.dotnet:~/.local/bin:/usr/local/go/bin:$PATH -fignore=(o) +fignore=(o class swp) function SetTtyColors() { echo -en "\e]P0""2c2d27" # black 1 @@ -87,10 +87,6 @@ if which starship &> /dev/null; then eval "$(starship init zsh)" fi -if test -f ~/.cargo/env; then - source ~/.cargo/env -fi - last_get_file="/tmp/.$(whoami)-dotfiles-last-get" current_date="$(date '+%Y-%m-%d')" if test -d "$DOT_DIR" && [[ "$current_date" != "$(cat "$last_get_file")" ]] &> /dev/null; then @@ -104,3 +100,4 @@ export NVM_DIR="$HOME/.nvm" test -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh && source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh test -f "$HOME/.asdf/asdf.sh" && . "$HOME/.asdf/asdf.sh" +test -f ~/.cargo/env && source ~/.cargo/env