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
|
||||
|
||||
[selection]
|
||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
||||
semantic_escape_chars = ",…││`|:\"' ()[]{}<>"
|
||||
save_to_clipboard = true
|
||||
|
||||
[window]
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
2
.zshrc
2
.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"
|
||||
|
|
Loading…
Add table
Reference in a new issue