Compare commits
5 Commits
1eeeab6a9f
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 9727708c90 | |||
| 83e37ab517 | |||
| c15867b839 | |||
| 8d10d2687e | |||
| c5b1c27875 |
@@ -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
|
||||||
@@ -3,10 +3,10 @@ set showmatch
|
|||||||
set ignorecase
|
set ignorecase
|
||||||
set hlsearch
|
set hlsearch
|
||||||
set incsearch
|
set incsearch
|
||||||
set tabstop=2
|
set tabstop=4
|
||||||
set softtabstop=2
|
set softtabstop=4
|
||||||
set expandtab
|
set expandtab
|
||||||
set shiftwidth=2
|
set shiftwidth=4
|
||||||
set autoindent
|
set autoindent
|
||||||
set number
|
set number
|
||||||
set wildmode=longest,list
|
set wildmode=longest,list
|
||||||
@@ -30,6 +30,7 @@ call plug#begin()
|
|||||||
Plug 'mhinz/vim-startify'
|
Plug 'mhinz/vim-startify'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
let g:dracula_italic = 0
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
|
||||||
lua << EOF
|
lua << EOF
|
||||||
|
|||||||
+12
-2
@@ -128,11 +128,17 @@ case $uname in
|
|||||||
OpenBSD)
|
OpenBSD)
|
||||||
export OS="openbsd"
|
export OS="openbsd"
|
||||||
;;
|
;;
|
||||||
|
FreeBSD)
|
||||||
|
export OS="freebsd"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Can't detect operating system from shell."
|
echo "Can't detect operating system from shell."
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
if [[ `ps ho command= $(ps ho ppid= $$)` == 'urxvt' ]]; then
|
||||||
|
clear
|
||||||
|
fi
|
||||||
|
|
||||||
# Rust dev
|
# Rust dev
|
||||||
if [ -d ~/.cargo/ ]
|
if [ -d ~/.cargo/ ]
|
||||||
@@ -146,7 +152,9 @@ then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Liz stuff lol
|
# 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:/Volumes/Exodrive/Code/flutter/bin"
|
||||||
export PATH="$PATH:~/Library/Android/sdk/platform-tools:~/Library/Android/sdk/build-tools"
|
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_NDK_HOME=~/Library/Android/sdk/ndk/25.2.9519653
|
||||||
export ANDROID_AVD_HOME=~/.android/avd
|
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
|
# bun completions
|
||||||
[ -s "/Users/madeline/.bun/_bun" ] && source "/Users/madeline/.bun/_bun"
|
[ -s "/Users/madeline/.bun/_bun" ] && source "/Users/madeline/.bun/_bun"
|
||||||
|
|||||||
@@ -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
|
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
|
||||||
|
|||||||
Reference in New Issue
Block a user