This commit is contained in:
Matthew Ryan Dillon 2023-01-25 19:21:12 -07:00
parent c7dcdf7784
commit 1dfcb6068f
3 changed files with 7 additions and 9 deletions

View file

@ -8,7 +8,7 @@ sudo apt upgrade
sudo apt install neovim tmux ripgrep zsh tree git build-essential libssl-dev pkg-config mpd sudo apt install neovim tmux ripgrep zsh tree git build-essential libssl-dev pkg-config mpd
sudo hostname $HOSTNAME sudo hostname $HOSTNAME
chsh -s $(which zsh) 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 --origin pingo ssh://git@pingo.thermokar.st/dotfiles ~/.dotfiles
git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell 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" git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"

View file

@ -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/--'" b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"
# list aliases # list aliases
la = "!git config -l | grep alias | cut -c 7-" la = "!git config -l | grep alias | cut -c 7-"
[credential] # [credential]
helper = osxkeychain # helper = osxkeychain
[pull] [pull]
rebase = true rebase = true
[init] [init]

View file

@ -59,12 +59,8 @@ check_paths=(
$HOME/.cargo/bin $HOME/.cargo/bin
# WSL # WSL
/mnt/c/windows # /mnt/c/windows
/mnt/c/windows/system32 # /mnt/c/windows/system32
# misc apps
/Applications/Postgres.app/Contents/Versions/latest/bin/
/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/
# home # home
$HOME/bin $HOME/bin
@ -83,3 +79,5 @@ export -U PATH
export CONDA_ENVS_PATH=$HOME/.conda/envs:/opt/miniconda3/envs export CONDA_ENVS_PATH=$HOME/.conda/envs:/opt/miniconda3/envs
export CONDA_PKGS_DIRS=$HOME/.conda/pkgs export CONDA_PKGS_DIRS=$HOME/.conda/pkgs
export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc 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