Compare commits

...

5 Commits

Author SHA1 Message Date
maddiebaka 9727708c90 Change neovim tabbing to 4 spaces 2026-04-04 12:19:26 -04:00
maddiebaka 83e37ab517 Add Xresources to repo 2026-03-27 19:15:35 -04:00
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
5 changed files with 56 additions and 6 deletions
+38
View File
@@ -0,0 +1,38 @@
URxvt.scrollBar: false
! special
*.foreground: #daba8b
*.background: #040402
*.cursorColor: #daba8b
! black
*.color0: #0f0e0d
*.color8: #383332
! red
*.color1: #845336
*.color9: #8c4f4a
! green
*.color2: #57553c
*.color10: #898471
! yellow
*.color3: #a17e3e
*.color11: #c8b491
! blue
*.color4: #43454f
*.color12: #65788f
! magenta
*.color5: #604848
*.color13: #755e4a
! cyan
*.color6: #5c6652
*.color14: #718062
! white
*.color7: #a18b62
*.color15: #bc9d66
+4 -3
View File
@@ -3,10 +3,10 @@ set showmatch
set ignorecase
set hlsearch
set incsearch
set tabstop=2
set softtabstop=2
set tabstop=4
set softtabstop=4
set expandtab
set shiftwidth=2
set shiftwidth=4
set autoindent
set number
set wildmode=longest,list
@@ -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
+1
View File
@@ -1,5 +1,6 @@
tmux.conf
vimrc
Xresources
config/nvim/init.vim
config/nvim/autoload/plug.vim
zshrc