diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index dcac2bf..933fedd 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -110,7 +110,7 @@ key = "F11" hide_when_typing = true [selection] -semantic_escape_chars = ",│`|:\"' ()[]{}<>" +semantic_escape_chars = ",…││`|:\"' ()[]{}<>" save_to_clipboard = true [window] diff --git a/.config/julia/startup.jl b/.config/julia/startup.jl index dac2f62..9350b74 100644 --- a/.config/julia/startup.jl +++ b/.config/julia/startup.jl @@ -1,6 +1,7 @@ using OhMyREPL using Pluto -using Symbolics +using Symbolics, Nemo using Unitful +using Nemo τ = 2*π pluto_custom() = Pluto.run(;port=8080, host="0.0.0.0", auto_reload_from_file=true, require_secret_for_access=false, warn_about_untrusted_code=false) diff --git a/.config/shell/bin/nvc b/.config/shell/bin/nvc index 920241a..250fb1b 100755 --- a/.config/shell/bin/nvc +++ b/.config/shell/bin/nvc @@ -2,5 +2,5 @@ # Purpose: edit nvim configuration while being cd'd into the directory that # most of the files live so they can easily be :e'd # Usage: nvc [$EDITOR options] -cd ~/.config/nvim/lua/blake \ - && $EDITOR "$@" ../../init.lua +cd ~/.config/nvim/lua \ + && $EDITOR "$@" ../init.lua diff --git a/.config/shell/bin/upd b/.config/shell/bin/upd index 1a955d0..7b0bf4c 100755 --- a/.config/shell/bin/upd +++ b/.config/shell/bin/upd @@ -23,6 +23,8 @@ fi # Avoiding copy pasting this over and over g() { git -C "$REPO" "$@"; } +REPOS_TO_UPDATE="${REPOS_TO_UPDATE:-}" + # path_append from https://superuser.com/questions/39751/add-directory-to-path-if-its-not-already-there # checks if a path is already in the PATH and if it exists path_append() { diff --git a/.gitconfig b/.gitconfig index c586fd7..1031269 100644 --- a/.gitconfig +++ b/.gitconfig @@ -13,6 +13,7 @@ [safe] directory = /storage/emulated/0/docs + directory = /mnt/windows/Users/blake/AppData/Local/nvim [color] ui = auto @@ -28,12 +29,13 @@ ch = checkout d = diff f = fetch + g = "! git" lg = log ok = pull pl = pull ps = push psf = push -f - psnew = "! git push --set-upstream origin \"$(git branch --show-current)\"" + psset = "! git push --set-upstream origin \"$(git branch --show-current)\"" rem = remote rest = restore s = status @@ -57,4 +59,7 @@ required = true clean = git-lfs clean -- %f +[core] + eol = lf + # vim:noet diff --git a/.zshrc b/.zshrc index a929c02..e37d2f6 100644 --- a/.zshrc +++ b/.zshrc @@ -62,7 +62,7 @@ ${SKIP_PLUGINS:-false} || { # Quality of life zinit load "zsh-users/zsh-autosuggestions" zinit load "zdharma-continuum/fast-syntax-highlighting" - zinit load "jeffreytse/zsh-vi-mode" + zinit load "softmoth/zsh-vim-mode" zinit load "zsh-users/zsh-history-substring-search" zinit load "zsh-users/zsh-completions" zinit load "Tarrasch/zsh-bd"