Merge branch 'master' of localhost:PowerUser/dotfiles
This commit is contained in:
commit
0c36e5d4fa
6 changed files with 14 additions and 6 deletions
|
@ -110,7 +110,7 @@ key = "F11"
|
||||||
hide_when_typing = true
|
hide_when_typing = true
|
||||||
|
|
||||||
[selection]
|
[selection]
|
||||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
semantic_escape_chars = ",…││`|:\"' ()[]{}<>"
|
||||||
save_to_clipboard = true
|
save_to_clipboard = true
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
using OhMyREPL
|
using OhMyREPL
|
||||||
using Pluto
|
using Pluto
|
||||||
using Symbolics
|
using Symbolics, Nemo
|
||||||
using Unitful
|
using Unitful
|
||||||
|
using Nemo
|
||||||
τ = 2*π
|
τ = 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)
|
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)
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
# Purpose: edit nvim configuration while being cd'd into the directory that
|
# Purpose: edit nvim configuration while being cd'd into the directory that
|
||||||
# most of the files live so they can easily be :e'd
|
# most of the files live so they can easily be :e'd
|
||||||
# Usage: nvc [$EDITOR options]
|
# Usage: nvc [$EDITOR options]
|
||||||
cd ~/.config/nvim/lua/blake \
|
cd ~/.config/nvim/lua \
|
||||||
&& $EDITOR "$@" ../../init.lua
|
&& $EDITOR "$@" ../init.lua
|
||||||
|
|
|
@ -23,6 +23,8 @@ fi
|
||||||
# Avoiding copy pasting this over and over
|
# Avoiding copy pasting this over and over
|
||||||
g() { git -C "$REPO" "$@"; }
|
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
|
# 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
|
# checks if a path is already in the PATH and if it exists
|
||||||
path_append() {
|
path_append() {
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
[safe]
|
[safe]
|
||||||
directory = /storage/emulated/0/docs
|
directory = /storage/emulated/0/docs
|
||||||
|
directory = /mnt/windows/Users/blake/AppData/Local/nvim
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
ui = auto
|
ui = auto
|
||||||
|
@ -28,12 +29,13 @@
|
||||||
ch = checkout
|
ch = checkout
|
||||||
d = diff
|
d = diff
|
||||||
f = fetch
|
f = fetch
|
||||||
|
g = "! git"
|
||||||
lg = log
|
lg = log
|
||||||
ok = pull
|
ok = pull
|
||||||
pl = pull
|
pl = pull
|
||||||
ps = push
|
ps = push
|
||||||
psf = push -f
|
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
|
rem = remote
|
||||||
rest = restore
|
rest = restore
|
||||||
s = status
|
s = status
|
||||||
|
@ -57,4 +59,7 @@
|
||||||
required = true
|
required = true
|
||||||
clean = git-lfs clean -- %f
|
clean = git-lfs clean -- %f
|
||||||
|
|
||||||
|
[core]
|
||||||
|
eol = lf
|
||||||
|
|
||||||
# vim:noet
|
# vim:noet
|
||||||
|
|
2
.zshrc
2
.zshrc
|
@ -62,7 +62,7 @@ ${SKIP_PLUGINS:-false} || {
|
||||||
# Quality of life
|
# Quality of life
|
||||||
zinit load "zsh-users/zsh-autosuggestions"
|
zinit load "zsh-users/zsh-autosuggestions"
|
||||||
zinit load "zdharma-continuum/fast-syntax-highlighting"
|
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-history-substring-search"
|
||||||
zinit load "zsh-users/zsh-completions"
|
zinit load "zsh-users/zsh-completions"
|
||||||
zinit load "Tarrasch/zsh-bd"
|
zinit load "Tarrasch/zsh-bd"
|
||||||
|
|
Loading…
Add table
Reference in a new issue