Compare commits

...

3 Commits

Author SHA1 Message Date
maddiebaka c15867b839 Turn off neovim italics 2026-03-27 13:08:14 -04:00
maddiebaka 8d10d2687e Add command guards and freeBSD support 2026-03-27 13:07:57 -04:00
maddiebaka c5b1c27875 Add better shebang line 2026-03-27 13:07:27 -04:00
3 changed files with 14 additions and 3 deletions
+1
View File
@@ -30,6 +30,7 @@ call plug#begin()
Plug 'mhinz/vim-startify'
call plug#end()
let g:dracula_italic = 0
colorscheme dracula
lua << EOF
+12 -2
View File
@@ -128,11 +128,17 @@ case $uname in
OpenBSD)
export OS="openbsd"
;;
FreeBSD)
export OS="freebsd"
;;
*)
echo "Can't detect operating system from shell."
;;
esac
if [[ `ps ho command= $(ps ho ppid= $$)` == 'urxvt' ]]; then
clear
fi
# Rust dev
if [ -d ~/.cargo/ ]
@@ -146,7 +152,9 @@ then
fi
# Liz stuff lol
echo "$(curl -fsSL https://icanhazdadjoke.com)" | lolcat
if command -v lolcat &> /dev/null; then
echo "$(curl -fsSL https://icanhazdadjoke.com)" | lolcat
fi
export PATH="$PATH:/Volumes/Exodrive/Code/flutter/bin"
export PATH="$PATH:~/Library/Android/sdk/platform-tools:~/Library/Android/sdk/build-tools"
@@ -157,7 +165,9 @@ export ANDROID_SDK_ROOT=~/Library/Android/sdk
export ANDROID_NDK_HOME=~/Library/Android/sdk/ndk/25.2.9519653
export ANDROID_AVD_HOME=~/.android/avd
export JAVA_HOME="`/usr/libexec/java_home `"
if [ -f /usr/libexec/java_home ]; then
export JAVA_HOME="`/usr/libexec/java_home `"
fi
# bun completions
[ -s "/Users/madeline/.bun/_bun" ] && source "/Users/madeline/.bun/_bun"
+1 -1
View File
@@ -1,3 +1,3 @@
#!/bin/bash
#!/usr/bin/env bash
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh