From 1dfcb6068fa27ce5f4528bf88ade4d0b9b06133a Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 25 Jan 2023 19:21:12 -0700 Subject: [PATCH] wip --- README.md | 2 +- git/gitconfig | 4 ++-- zsh/zshenv | 10 ++++------ 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6f36a24..5d5a776 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ sudo apt upgrade sudo apt install neovim tmux ripgrep zsh tree git build-essential libssl-dev pkg-config mpd sudo hostname $HOSTNAME chsh -s $(which zsh) -sudo echo "[interop]\nappendWindowsPath = false" > /etc/wsl.conf +sudo echo "[interop]\nappendWindowsPath = false\n\n[boot]\nsystemd = true" > /etc/wsl.conf git clone --origin pingo ssh://git@pingo.thermokar.st/dotfiles ~/.dotfiles git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto" diff --git a/git/gitconfig b/git/gitconfig index 540ecb0..646994d 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -50,8 +50,8 @@ b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'" # list aliases la = "!git config -l | grep alias | cut -c 7-" -[credential] - helper = osxkeychain +# [credential] +# helper = osxkeychain [pull] rebase = true [init] diff --git a/zsh/zshenv b/zsh/zshenv index 5f3d90d..35c91cd 100644 --- a/zsh/zshenv +++ b/zsh/zshenv @@ -59,12 +59,8 @@ check_paths=( $HOME/.cargo/bin # WSL - /mnt/c/windows - /mnt/c/windows/system32 - - # misc apps - /Applications/Postgres.app/Contents/Versions/latest/bin/ - /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/ + # /mnt/c/windows + # /mnt/c/windows/system32 # home $HOME/bin @@ -83,3 +79,5 @@ export -U PATH export CONDA_ENVS_PATH=$HOME/.conda/envs:/opt/miniconda3/envs export CONDA_PKGS_DIRS=$HOME/.conda/pkgs export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc + +if [ -e /home/matthew/.nix-profile/etc/profile.d/nix.sh ]; then . /home/matthew/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer