diff --git a/.config/julia/startup.jl b/.config/julia/startup.jl deleted file mode 100644 index dac2f62..0000000 --- a/.config/julia/startup.jl +++ /dev/null @@ -1,6 +0,0 @@ -using OhMyREPL -using Pluto -using Symbolics -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) diff --git a/.config/shell/aliases b/.config/shell/aliases index 4c2fd54..57398ff 100644 --- a/.config/shell/aliases +++ b/.config/shell/aliases @@ -38,7 +38,6 @@ alias bc='bc -ql' # Make bc usable for fast math alias ffmpeg='ffmpeg -hide_banner' [ -z "$VIMRUNTIME" ] && alias glow='glow -p' # force Glow to preview with `less` if not in vim -alias juliai='julia -i ${XDG_CONFIG_HOME:-"$HOME/.config"}/julia/startup.jl' # I hate it when I get ghost script instead of git status alias gs='echo "you don'\''t $(tput sitm)really$(tput sgr0) want ghost script now, do you?"' diff --git a/.config/shell/env b/.config/shell/env index 3fb5bf1..73f6d14 100644 --- a/.config/shell/env +++ b/.config/shell/env @@ -14,14 +14,12 @@ if [ -z "$PROFILE_LOADED" ] && [ -f ~/.profile ]; then fi # Intelligently set $EDITOR -if [ "${EDITOR:-}" = "" ] || [ "${EDITOR##*/}" = "nano" ]; then - if command -v nvim > /dev/null;then - export EDITOR=nvim - elif command -v vim > /dev/null;then - export EDITOR=vim - elif command -v vi > /dev/null;then - export EDITOR=vi - fi +if command -v nvim > /dev/null;then + export EDITOR=nvim +elif command -v vim > /dev/null;then + export EDITOR=vim +elif command -v vi > /dev/null;then + export EDITOR=vi fi export SYSTEMD_EDITOR="$EDITOR" export VISUAL="$EDITOR"