From 82fc4b878851c10ab9abd7d004846059e09d054d Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Fri, 17 Jan 2025 05:02:08 -0800 Subject: [PATCH 1/8] julia: add Nemo to startup --- .config/julia/startup.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/julia/startup.jl b/.config/julia/startup.jl index dac2f62..a863380 100644 --- a/.config/julia/startup.jl +++ b/.config/julia/startup.jl @@ -1,6 +1,6 @@ using OhMyREPL using Pluto -using Symbolics +using Symbolics, Nemo using Unitful τ = 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) From 83fd868c7870606aacca7197d994995558a3ea49 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Fri, 24 Jan 2025 23:18:20 -0800 Subject: [PATCH 2/8] alacritty: add new highlight escape character --- .config/alacritty/alacritty.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] From cfa995180eb242c34b7d59b84efc4d0f4e9d9a2d Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sat, 25 Jan 2025 23:33:35 -0800 Subject: [PATCH 3/8] zsh: zsh-vi-mode -> zsh-vim-mode (hopefully more mature plugin) --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 1d7d87a..a5779c2 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" From b6ce349681fd480e112b3b2831021bcb21e0290a Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sat, 25 Jan 2025 23:34:31 -0800 Subject: [PATCH 4/8] julia: add nemo --- .config/julia/startup.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/julia/startup.jl b/.config/julia/startup.jl index dac2f62..d97c476 100644 --- a/.config/julia/startup.jl +++ b/.config/julia/startup.jl @@ -2,5 +2,6 @@ using OhMyREPL using Pluto using Symbolics 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) From 2a10b068c62439555d2352116f7a812227081532 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sat, 25 Jan 2025 23:34:46 -0800 Subject: [PATCH 5/8] upd(fix): initialize REPOS_TO_UPDATE --- .config/shell/bin/upd | 2 ++ 1 file changed, 2 insertions(+) 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() { From 0921d0709c5f9828c4b7df164680a9335cfb6216 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 27 Jan 2025 11:25:07 -0800 Subject: [PATCH 6/8] shell: update nvc to handle new nvim config --- .config/shell/bin/nvc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From fe04184babef07f46472b50c6f9c43fff59f2f90 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 19 Feb 2025 11:50:30 -0800 Subject: [PATCH 7/8] git: use LF line endings --- .gitconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitconfig b/.gitconfig index c586fd7..7cfcafa 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,6 +29,7 @@ ch = checkout d = diff f = fetch + g = "! git" lg = log ok = pull pl = pull @@ -57,4 +59,7 @@ required = true clean = git-lfs clean -- %f +[core] + eol = lf + # vim:noet From 01f8e07b839685fab198539aec301637ece5cd3b Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Wed, 19 Feb 2025 12:07:10 -0800 Subject: [PATCH 8/8] git: rename psnew alias to psset --- .gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitconfig b/.gitconfig index 7cfcafa..1031269 100644 --- a/.gitconfig +++ b/.gitconfig @@ -35,7 +35,7 @@ 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