Full Code of connermcd/dotfiles for AI

master ff845444e306 cached
39 files
663.2 KB
257.5k tokens
1 requests
Download .txt
Showing preview only (686K chars total). Download the full file or copy to clipboard to get everything.
Repository: connermcd/dotfiles
Branch: master
Commit: ff845444e306
Files: 39
Total size: 663.2 KB

Directory structure:
gitextract_6ndfnbuo/

├── .Xresources
├── .bashrc
├── .config/
│   └── systemd/
│       └── user/
│           ├── davmail.service
│           ├── minidlna.service
│           ├── mpd.service
│           ├── offlineimap.service
│           ├── offlineimap.timer
│           ├── rclone.service
│           └── rclone.timer
├── .ghc/
│   └── ghci.conf
├── .gitconfig
├── .gitignore
├── .mutt/
│   ├── colorscheme
│   ├── keybindings
│   ├── mailcap
│   ├── muttgpg
│   ├── muttrc
│   └── signature
├── .tmux.conf
├── .vim/
│   ├── after/
│   │   └── syntax/
│   │       └── man.vim
│   ├── colors/
│   │   ├── apprentice.vim
│   │   ├── blackboard.vim
│   │   ├── distinguished.vim
│   │   ├── grb256.vim
│   │   ├── hipster.vim
│   │   ├── ir_black.vim
│   │   ├── railscasts.vim
│   │   ├── slate2.vim
│   │   ├── vibrantink.vim
│   │   ├── vividchalk.vim
│   │   ├── wombatty.vim
│   │   └── xoria256.vim
│   └── spell/
│       ├── eng.utf-8.add
│       ├── eng.utf-8.add.spl
│       └── eng.utf-8.spl
├── .vimpcrc
├── .vimrc
├── .xbindkeysrc
└── .xinitrc

================================================
FILE CONTENTS
================================================

================================================
FILE: .Xresources
================================================
Xcursor.theme         : Bluecurve

URxvt*depth           : 32
URxvt*buffered        : true
URxvt*foreground      : #aaaaaa
! URxvt*background      : [85]#000000
URxvt*background      : #262626
URxvt*fading          : 10%
URxvt*internalBorder  : 5
URxvt*scrollBar       : false
URxvt*pointerBlank    : true
!URxvt*font            : xft:Inconsolata:size=12,xft:Monospace
URxvt*font            : xft:Source Code Pro:size=12
URxvt*perl-ext-common : default,matcher
URxvt*urlLauncher     : /usr/bin/chromium
URxvt*matcher.button  : 1
URxvt*termName        : rxvt-unicode-256color
URxvt*iso14755        : false
URxvt*iso14755_52     : false
!URxvt*transparent     : true
URxvt*shading         : 30

URxvt.keysym.Shift-Control-V: perl:clipboard:paste
URxvt.iso14755: False
URxvt.perl-ext-common: default,matcher,clipboard
URxvt.url-launcher: /usr/bin/xdg-open
URxvt.matcher.button: 1

!! Personal colors {{{1
!!black
!*color0 :            #222222
!*color8 :            #454545
!!red
!*color1 :            #B22222
!*color9 :            #FA8072
!!green
!*color2 :            #556B2F
!*color10:            #779A3E
!!yellow
!*color3 :            #B8860B
!*color11:            #DAA520
!!blue
!*color4 :            #4682B4
!*color12:            #6495ED
!!magenta
!*color5 :            #9932CC
!*color13:            #DA70D6
!!cyan
!*color6 :            #87CEEB
!*color14:            #B0E0E6
!!white
!*color7 :            #C0C0C0
!*color15:            #FFFFFF
! Apprentice colorscheme {{{1
! special
*.foreground:   #bcbcbc
*.background:   #262626
*.cursorColor:  #bcbcbc

! black
*.color0:       #1c1c1c
*.color8:       #444444

! red
*.color1:       #af5f5f
*.color9:       #ff8700

! green
*.color2:       #5f875f
*.color10:      #87af87

! yellow
*.color3:       #87875f
*.color11:      #ffffaf

! blue
*.color4:       #5f87af
*.color12:      #8fafd7

! magenta
*.color5:       #5f5f87
*.color13:      #8787af

! cyan
*.color6:       #5f8787
*.color14:      #5fafaf

! white
*.color7:       #6c6c6c
*.color15:      #999999


================================================
FILE: .bashrc
================================================
# Setup {{{1
stty -ixon -ixoff # turns off CTRL-S
[[ $- != *i* ]] && return
bind '"\C-o":"cd_with_fzf\n"'
bind '"\C-f":"open_with_fzf\n"'
bind '"\C-v":"vim\n"'

export BROWSER=/usr/bin/qutebrowser
export EDITOR=vim
export FZF_DEFAULT_COMMAND="fd -H"
export PROMPT_COMMAND=__prompt_command

__prompt_command() {
   code=$?
   [[ $code != 0 ]] && echo -e "$RED✗ ${code}${RESET_COLOR}"
   PS1="$(ps1_hostname)\[\e[1;36m\]\W\[\e[1;31m\]:\[\e[0m\] "
}

ps1_hostname() {
   host=$(hostname)
   user=$(whoami)
   if [[ "$host" != "lemur" || "$user" != "connermcd" ]]; then
      echo "\[\e[1;30m\]$user\[\e[0;37m\]@\[\e[1;36m\]$host "
   fi
}

bind TAB:menu-complete
# less colors {{{2
export LESS_TERMCAP_mb=$'\e[01;31m' # begin blinking
export LESS_TERMCAP_md=$'\e[01;34m' # begin bold
export LESS_TERMCAP_me=$'\e[0m'     # end mode
export LESS_TERMCAP_se=$'\e[0m'     # end standout-mode
export LESS_TERMCAP_so=$'\e[01;32m' # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\e[0m'     # end underline
export LESS_TERMCAP_us=$'\e[01;36m' # begin underline
# Aliases {{{1
alias calc="libreoffice --calc"
alias cleanvim="/bin/vim -N -u NONE"
alias cp="rsync --archive --human-readable --progress --verbose --whole-file"
alias scp="rsync --archive --checksum --compress --human-readable --itemize-changes --rsh=ssh --stats --verbose"
alias draw="libreoffice --draw"
alias duh="du -h -d 0 [^.]*"
alias em="neomutt"
alias grep="grep --color=always"
alias gv="vim -c 'GV'"
alias htop="sudo htop"
alias impress="libreoffice --impress"
alias l="ls -al"
alias ls='ls --color=auto'
alias linode='ssh conner@linode'
alias m="vimpc"
alias myip="curl http://myip.dnsomatic.com && echo ''"
alias open="xdg-open"
alias pandoc="pandoc --pdf-engine=lualatex -H $HOME/.config/pandoc/fonts.tex"
alias pretty-json="python2 -mjson.tool"
alias print="lpr -P 'Deskjet_F4500'"
alias r='ranger'
alias screencast="ffmpeg -f alsa -ac 2 -i default -f x11grab -r 30 -s 1920x1080 -i :0.0 -acodec pcm_s16le -vcodec libx264 -preset ultrafast -crf 0 -y screencast.mkv"
# alias screencast="ffmpeg -f pulse -i 3 -ac 2 -f x11grab -r 30 -s 1920x1080 -i :0.0 -acodec pcm_s16le -vcodec libx264 -preset ultrafast -crf 0 -y screencast.mkv"
alias screencast-no-sound="ffmpeg -f x11grab -r 30 -s 1920x1080 -i :0.0 -vcodec libx264 -preset ultrafast -crf 0 -y screencast.mkv"
alias slideshow="pandoc --pdf-engine=lualatex -H $HOME/.config/pandoc/fonts.tex -t beamer -o slideshow.pdf"
alias syms="find . -maxdepth 1 -type l -print | while read line; do ls -alc "\$line"; done"
alias tran="transmission-remote-cli"
alias vb="VBoxManage"
alias webcam="mplayer -noborder -tv driver=v4l2:gain=1:width=320:height=240:device=/dev/video0:fps=10:outfmt=rgb16 -geometry 100%:97% tv://"
alias webcast-external="ffmpeg -f alsa -ac 2 -i hw:1,0 -f v4l2 -itsoffset 1 -s 640x480 -i /dev/video0 -acodec pcm_s16le -vcodec libx264 -y output.mkv"
alias webcast-internal="ffmpeg -f alsa -ac 2 -i hw:0,0 -f v4l2 -itsoffset 1 -s 640x480 -i /dev/video0 -acodec pcm_s16le -vcodec libx264 -y output.mkv"
alias wifi="sudo wifi-menu -o"
alias writer="libreoffice --writer"
# Functions {{{1
open_with_fzf() {
file="$(fd -t f -H | fzf --preview="head -$LINES {}")"
if [ -n "$file" ]; then
    mimetype="$(xdg-mime query filetype $file)"
    default="$(xdg-mime query default $mimetype)"
    if [[ "$default" == "vim.desktop" ]]; then
        vim "$file"
    else
        &>/dev/null xdg-open "$file" & disown
    fi
fi
}
cd_with_fzf() {
cd "$(fd -t d | fzf --preview="tree -L 1 {}" --bind="space:toggle-preview" --preview-window=:hidden)" && clear
}
pacs() {
sudo pacman -Syy $(pacman -Ssq | fzf -m --preview="pacman -Si {}" --preview-window=:hidden --bind=space:toggle-preview)
}
compress-pdf() {
   gs -o "$2" -sDEVICE=pdfwrite -dPDFSETTINGS=/screen -dCompatibilityLevel=1.4 -dNOPAUSE -dBATCH "$1"
}
cut-video() {
   ffmpeg -i "$1" -ss "$2" -to "$3" -async 1 cut.mp4
}
concat-video() {
   ffmpeg -i "$1" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
   ffmpeg -i "$2" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
   ffmpeg -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc concat.mp4 && rm intermediate1.ts intermediate2.ts
}
pmid2bib() {
   curl -s "https://www.ncbi.nlm.nih.gov/pubmed/$1?report=xml&format=raw" | sed -e 's/&gt;/>/g' -e 's/&lt;/</g' | med2xml | xml2bib -nb -b >>bib.bib
}
pdf2bib() {
    pdftotext "$1" - | doigrep | while read doi; do doi2bib "$doi"; done
}
repair-pdf() {
   gs -o "$2" -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress "$1"
}
gong() {
   at "$1" today <<EOF
notify-send "Time to go"
mpc -q toggle
mplayer /usr/lib/libreoffice/share/gallery/sounds/gong.wav
EOF
}
pacman-purge() {
   sudo paccache -r
   sudo pacman -Rsn $(pacman -Qqdt)
}
pacsize() {
   sudo pacman -Qi | \
      awk 'BEGIN{sort="sort -k2 -n"} /Name/ {name=$3} /Size/ {size=$4/1024;print name":",size,"Mb"|sort}' | \
      less
}
poke() {
cat <<EOF | nc "$1" "$2"
HEAD / HTTP/1.1
Host: host
Connection: close

EOF
}
ptime() {
   find -type f -name \"*\" -print0 | \
      xargs -0  mplayer -vo dummy -ao dummy -identify 2>/dev/null | \
      perl -nle '/ID_LENGTH=([0-9\.]+)/ && (\$t +=\$1) && printf \"%02d:%02d:%02d\n\",\$t/3600,\$t/60%60,\$t%60' | \
      tail -n 1
}
speedup() {
   </dev/null ffmpeg -i "$*" -filter atempo=1.5 "${*%%.mp3}-150.mp3"
}
twitch() {
   INRES="1920x1080" # input resolution
   OUTRES="1280x720" # output resolution
   FPS="30" # target FPS
   # GOP="$(( $FPS * 2 ))" # i-frame interval, should be double of FPS
   GOP="60" # i-frame interval, should be double of FPS
   GOPMIN="$FPS" # min i-frame interval, should be equal to fps
   THREADS="4" # max 6
   CBR="1000k" # constant bitrate (should be between 1000k - 3000k)
   QUALITY="ultrafast"  # one of the many FFMPEG preset
   AUDIO_RATE="44100"
   STREAM_KEY="$(pass show web/twitch/key)"
   SERVER="live-dfw" # twitch server in frankfurt, see http://bashtech.net/twitch/ingest.php for list
   PROBESIZE="42M"

   ffmpeg \
      -f x11grab -s "$INRES" -r "$FPS" -probesize $PROBESIZE -i :0.0 \
      -f pulse -i 3 -f flv -ac 2 -ar $AUDIO_RATE \
      -vcodec libx264 -g $GOP -keyint_min $GOPMIN -b:v $CBR -minrate $CBR -maxrate $CBR -pix_fmt yuv420p\
      -s $OUTRES -preset $QUALITY -acodec libmp3lame -threads $THREADS -strict normal \
      -bufsize $CBR "rtmp://$SERVER.twitch.tv/app/$STREAM_KEY"
}
youtube-stream() {
   INRES="1920x1080" # input resolution
   OUTRES="1280x720" # output resolution
   FPS="30" # target FPS
   GOP="$(( $FPS * 2 ))" # i-frame interval, should be double of FPS
   GOPMIN="$FPS" # min i-frame interval, should be equal to fps
   THREADS="4" # max 6
   CBR="1000k" # constant bitrate (should be between 1000k - 3000k)
   QUALITY="ultrafast"  # one of the many FFMPEG preset
   AUDIO_RATE="44100"
   STREAM_KEY="$(pass show web/youtube/key)"
   PROBESIZE="42M"

   ffmpeg \
      -f x11grab -s "$INRES" -r "$FPS" -probesize $PROBESIZE -i :0.0 \
      -f pulse -i 3 -f flv -ac 2 -ar $AUDIO_RATE \
      -vcodec libx264 -g $GOP -keyint_min $GOPMIN -b:v $CBR -minrate $CBR -maxrate $CBR -pix_fmt yuv420p\
      -s $OUTRES -preset $QUALITY -acodec libmp3lame -threads $THREADS -strict normal \
      -bufsize $CBR "rtmp://a.rtmp.youtube.com/live2/$STREAM_KEY"
}
webrick() {
   port="${1:-3000}"
   ruby -r webrick -e "s = WEBrick::HTTPServer.new(:Port => $port, :DocumentRoot => Dir.pwd); trap('INT') { s.shutdown }; s.start"
}
youtube() {
   mplayer -fs -cookies -cookies-file cookie.txt $(youtube-dl -g --cookies cookie.txt -f 18 "http://www.youtube.com/watch?v=$1")
}
syt() { pipe=`mktemp -u`; mkfifo -m 600 "$pipe" && for i in "$@"; do youtube-dl -qo "$pipe" "$i" & mplayer "$pipe" || break; done; rm -f "$pipe"; }
# Gnuplot {{{1
# cat ~/.bash_history | awk '/^git/ { print $1, $2 }' | sort | uniq -dc | sort | gnuplot -p -e 'set terminal x11; set xtics rotate 180; set key off; plot [:][:] "< cat -" using 1: xtic(3) with histogram' | feh -


================================================
FILE: .config/systemd/user/davmail.service
================================================
[Unit]
Description=Exchange tunneling service
After=network.target network-online.target dbus.socket

[Service]
Type=simple
ExecStart=/usr/bin/davmail

[Install]
WantedBy=default.target


================================================
FILE: .config/systemd/user/minidlna.service
================================================
[Unit]
Description=DLNS Server
After=network.target network-online.target dbus.socket

[Service]
Type=simple
ExecStart=minidlnad -r -S -f /home/connermcd/.config/minidlna/minidlna.conf -P /home/connermcd/.config/minidlna/minidlna.pid

[Install]
WantedBy=default.target


================================================
FILE: .config/systemd/user/mpd.service
================================================
[Unit]
Description=Music Player Daemon
Documentation=man:mpd(1) man:mpd.conf(5)
After=network.target sound.target

[Service]
Type=notify
ExecStart=/usr/bin/mpd --no-daemon

# allow MPD to use real-time priority 50
LimitRTPRIO=50
LimitRTTIME=infinity

# disallow writing to /usr, /bin, /sbin, ...
ProtectSystem=yes

# more paranoid security settings
NoNewPrivileges=yes
ProtectKernelTunables=yes
ProtectControlGroups=yes
# AF_NETLINK is required by libsmbclient, or it will exit() .. *sigh*
RestrictAddressFamilies=AF_INET AF_INET6 AF_UNIX AF_NETLINK
RestrictNamespaces=yes

# Note that "ProtectKernelModules=yes" is missing in the user unit
# because systemd 232 is unable to reduce its own capabilities
# ("Failed at step CAPABILITIES spawning /usr/bin/mpd: Operation not
# permitted")

[Install]
WantedBy=default.target


================================================
FILE: .config/systemd/user/offlineimap.service
================================================
[Unit]
Description=Mailbox synchronization service
After=graphical-session.target

[Service]
Type=oneshot
ExecStart=/usr/bin/offlineimap -o

[Install]
WantedBy=default.target


================================================
FILE: .config/systemd/user/offlineimap.timer
================================================
[Unit]
Description=Mailbox synchronization timer

[Timer]
OnBootSec=2m
OnUnitActiveSec=1m
Unit=offlineimap.service

[Install]
WantedBy=timers.target


================================================
FILE: .config/systemd/user/rclone.service
================================================
[Unit]
Description=RClone
Documentation=man:rclone(1)
After=network.target network-online.target dbus.socket

[Service]
Type=oneshot
ExecStart=/usr/bin/rclone -v sync --drive-use-trash=false --drive-export-formats pdf --transfers=1 Google google:

[Install]
WantedBy=default.target


================================================
FILE: .config/systemd/user/rclone.timer
================================================
[Unit]
Description=Google Drive synchronization timer

[Timer]
OnBootSec=2m
OnUnitActiveSec=5m
Unit=rclone.service

[Install]
WantedBy=timers.target


================================================
FILE: .ghc/ghci.conf
================================================
import Control.Applicative
import Control.Monad

import Data.String
import Data.Char
import Data.List
import Data.Monoid

-- You must set your prompt to a lambda, it's a law.
:set prompt "λ: "

:set -fno-warn-unused-imports
:def! hlint const . return $ ":! hlint \"src\""
:def! hg \s -> return $ ":! hoogle --color --count=15 \"" ++ s ++ "\""
:def! doc \s -> return $ ":! hoogle --color --info --count=15 \"" ++ s ++ "\""
:def! pl \s -> return $ ":! pointfree \"" ++ s ++ "\""


================================================
FILE: .gitconfig
================================================
[user]
	name = Conner McDaniel
	email = connermcd@gmail.com
[github]
	user = connermcd
[push]
	default = tracking
[merge]
	tool = fugitive
[mergetool "fugitive"]
	cmd = vim -f -c \"Gdiff\" \"$MERGED\"
	keepBackup = false
[color]
	ui = auto
[alias]
	st = status -sb
	ci = commit
	co = checkout
	cb = checkout -b
	di = diff
	dc = diff --cached
	aa = add --all
	ff = merge --ff-only
	pullff = pull --ff-only
	noff = merge --no-ff
	pom = push origin master
	b = branch
	ds = diff --stat=160,120
	dh1 = diff HEAD~1
	l = log --simplify-merges --graph --pretty="tformat:%C(yellow)%h%Creset\\ %Cgreen(%ar)%Creset\\ %C(blue)<%an>%Creset\\ %C(red)%d%Creset\\ %s"


================================================
FILE: .gitignore
================================================
.local
.ICAClient
.npm
.weechat
.cache
.gimp-2.8
.ssh
.gnupg
.git
.mu


================================================
FILE: .mutt/colorscheme
================================================
# vim: filetype=muttrc

# make sure that you are using mutt linked against slang, not ncurses, or
# suffer the consequences of weird color issues. use "mutt -v" to check this.

# custom body highlights -----------------------------------------------
# highlight my name and other personally relevant strings
#color body    color136        color234        "(ethan|schoonover)"
# custom index highlights ----------------------------------------------
# messages which mention my name in the body
#color index   color136        color234        "~b \"phil(_g|\!| gregory| gold)|pgregory\" !~N !~T !~F !~p !~P"
#color index   J_cream   color230        "~b \"phil(_g|\!| gregory| gold)|pgregory\" ~N !~T !~F !~p !~P"
#color index   color136        color244  "~b \"phil(_g|\!| gregory| gold)|pgregory\" ~T !~F !~p !~P"
#color index   color136        J_magent        "~b \"phil(_g|\!| gregory| gold)|pgregory\" ~F !~p !~P"
## messages which are in reference to my mails
#color index   J_magent        color234        "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" !~N !~T !~F !~p !~P"
#color index   J_magent        color230        "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" ~N !~T !~F !~p !~P"
#color index   J_magent        color244  "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" ~T !~F !~p !~P"
#color index   J_magent        color9          "~x \"(mithrandir|aragorn)\\.aperiodic\\.net|thorin\\.hillmgt\\.com\" ~F !~p !~P"

# for background in 16 color terminal, valid background colors include:
# base03, bg, black, any of the non brights

# basic colors ---------------------------------------------------------
color normal       white      default
color error        color9     default
color tilde        color235   default
color message      white      default
color markers      color9     color254
color attachment   color254   default
color search       color213   color245
#color status                    J_black      J_status
# color status       white      black
color status       color249      color235
# color indicator    color234   color136
color indicator    black      white
color tree         yellow     default   # arrow in threads

# basic monocolor screen
mono bold        bold
mono underline   underline
mono indicator   reverse
mono error       bold

# index ----------------------------------------------------------------

#color index   color9          color234        "~D(!~p|~p)"              # deleted
#color index   color235        color234        ~F                        # flagged
#color index   color166        color234        ~=                        # duplicate messages
#color index   color240        color234        "~A!~N!~T!~p!~Q!~F!~D!~P" # the rest
#color index   J_base          color234        "~A~N!~T!~p!~Q!~F!~D"     # the rest, new
color index   color9     default   "~A"            # all messages
color index   color166   default   "~E"            # expired messages
color index   color33    default   "~N"            # new messages
color index   color33    default   "~O"            # old messages
color index   color61    default   "~Q"            # messages that have been replied to
color index   color245   default   "~R"            # read messages
color index   green      default   "~U"            # unread messages
color index   green      default   "~U~$"          # unread, unreferenced messages
color index   color241   default   "~v"            # messages part of a collapsed thread
color index   color241   default   "~P"            # messages from me
color index   green      default   "~p!~F"         # messages to me
color index   green      default   "~N~p!~F"       # new messages to me
color index   green      default   "~U~p!~F"       # unread messages to me
color index   color245   default   "~R~p!~F"       # messages to me
color index   color9     default   "~F"            # flagged messages
color index   color9     default   "~F~p"          # flagged messages to me
color index   color9     default   "~N~F"          # new flagged messages
color index   color9     default   "~N~F~p"        # new flagged messages to me
color index   color9     default   "~U~F~p"        # new flagged messages to me
color index   color235   color9    "~D"            # deleted messages
color index   color245   default   "~v~(!~N)"      # collapsed thread with no unread
color index   color136   default   "~v~(~N)"       # collapsed thread with some unread
color index   color64    default   "~N~v~(~N)"     # collapsed thread with unread parent
# statusbg used to indicated flagged when foreground color shows other status
# for collapsed thread
color index color9   color235 "~v~(~F)!~N"  # collapsed thread with flagged, no unread
color index color136 color235 "~v~(~F~N)"   # collapsed thread with some unread & flagged
color index color64  color235 "~N~v~(~F~N)" # collapsed thread with unread parent & flagged
color index color64  color235 "~N~v~(~F)"   # collapsed thread with unread parent, no unread inside, but some flagged
color index color244 color235 "~v~(~p)"   # collapsed thread with unread parent, no unread inside, some to me directly
color index color136 color9   "~v~(~D)"   # thread with deleted (doesn't differentiate between all or partial)
#color index   color136        color234        "~(~N)"        # messages in threads with some unread
#color index   color64   color234        "~S"           # superseded messages
#color index   color9          color234        "~T"           # tagged messages
#color index   color166        color9          "~="           # duplicated messages

# message headers ------------------------------------------------------

color header        color240        color234        "^"
color hdrdefault    white     default
# color header        white     black   "^(From)"
color header        color4    black   "^(Subject)"

# body -----------------------------------------------------------------

color quoted        blue      default
color quoted1       green     default
color quoted2       red       default
color quoted3       magenta   default
color quoted4       cyan      default

color signature     white     default
color bold          color235  default
color underline     color235  default
color normal        color245  default
#
color body          color245  default   "[;:][-o][)/(|]"     # emoticons
color body          color245  default   "[;:][)(|]"          # emoticons
color body          color245  default   "[ ][*][^*]*[*][ ]?" # more emoticon?
color body          color245  default   "[ ]?[*][^*]*[*][ ]" # more emoticon?

## pgp

color body    color9          default        "(BAD signature)"
color body    color244        default        "(Good signature)"
color body    color234        default        "^gpg: Good signature .*"
color body    color241        default        "^gpg: "
color body    color241        color9         "^gpg: BAD signature from.*"
mono  body    bold                           "^gpg: Good signature"
mono  body    bold                           "^gpg: BAD signature from.*"

# *bold*
color body    color33   color234        "(^|[[:space:][:punct:]])\\*[^*]+\\*([[:space:][:punct:]]|$)"
mono  body    bold          "(^|[[:space:][:punct:]])\\*[^*]+\\*([[:space:][:punct:]]|$)"

# _underline_
color body    color33   color234        "(^|[[:space:][:punct:]])_[^_]+_([[:space:][:punct:]]|$)"
mono  body    underline           "(^|[[:space:][:punct:]])_[^_]+_([[:space:][:punct:]]|$)"

# yes, an insane URL regex
color body    yellow          default        "([a-z][a-z0-9+-]*://(((([a-z0-9_.!~*'();:&=+$,-]|%[0-9a-f][0-9a-f])*@)?((([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?|[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)(:[0-9]+)?)|([a-z0-9_.!~*'()$,;:@&=+-]|%[0-9a-f][0-9a-f])+)(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*(/([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*(;([a-z0-9_.!~*'():@&=+$,-]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?(#([a-z0-9_.!~*'();/?:@&=+$,-]|%[0-9a-f][0-9a-f])*)?|(www|ftp)\\.(([a-z0-9]([a-z0-9-]*[a-z0-9])?)\\.)*([a-z]([a-z0-9-]*[a-z0-9])?)\\.?(:[0-9]+)?(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*(/([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*(;([-a-z0-9_.!~*'():@&=+$,]|%[0-9a-f][0-9a-f])*)*)*)?(\\?([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?(#([-a-z0-9_.!~*'();/?:@&=+$,]|%[0-9a-f][0-9a-f])*)?)[^].,:;!)? \t\r\n<>\"]"

# and a heavy handed email regex
#color body    J_magent        color234        "((@(([0-9a-z-]+\\.)*[0-9a-z-]+\\.?|#[0-9]+|\\[[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\]),)*@(([0-9a-z-]+\\.)*[0-9a-z-]+\\.?|#[0-9]+|\\[[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\.[0-9]?[0-9]?[0-9]\\]):)?[0-9a-z_.+%$-]+@(([0-9a-z-]+\\.)*[0-9a-z-]+\\.?|#[0-9]+|\\[[0-2]?[0-9]?[0-9]\\.[0-2]?[0-9]?[0-9]\\.[0-2]?[0-9]?[0-9]\\.[0-2]?[0-9]?[0-9]\\])"

# Various smilies and the like
#color body    color230        color234        "<[Gg]>"          # <g>
#color body    color230        color234        "<[Bb][Gg]>"            # <bg>
#color body    color136        color234        " [;:]-*[})>{(<|]"      # :-) etc...

# /italic/  (Sometimes gets directory names)
# color body   color33   color234        "(^|[[:space:][:punct:]])/[^/]+/([[:space:][:punct:]]|$)"
# mono body    underline           "(^|[[:space:][:punct:]])/[^/]+/([[:space:][:punct:]]|$)"

# Border lines.
#color body    color33   color234        "( *[-+=#*~_]){6,}"
#folder-hook .      "color status        J_black   J_status        "
#folder-hook gmail/inbox        "color status        J_black   color136        "
#folder-hook gmail/important    "color status        J_black   color136        "


================================================
FILE: .mutt/keybindings
================================================
bind index,pager,attach g noop
bind index,pager \CP sidebar-prev       # Ctrl-Shift-P - Previous Mailbox
bind index,pager \CN sidebar-next       # Ctrl-Shift-N - Next Mailbox
bind index,pager \CO sidebar-open       # Ctrl-Shift-O - Open Highlighted Mailbox

bind generic,index Q exit
bind pager u noop
bind pager n noop
bind index <space> sync-mailbox
bind editor <Tab> complete-query

bind browser gg   top-page
bind browser G   bottom-page
bind browser \Cb previous-page
bind browser \Cf next-page
bind browser A   check-new
bind browser v   view-file

bind index ~   set-flag
bind index \Cv what-key
bind index H   current-top
bind index M   current-middle
bind index L   current-bottom
bind index /   search
bind index :   enter-command
bind index i   mail

bind pager i   edit
bind pager u   mark-as-new
bind pager gg  top
bind pager G   bottom
bind pager j   next-line
bind pager k   previous-line

bind index,attach gg   first-entry
bind index,attach G   last-entry

bind index,pager L   list-reply
# bind index,pager P   print-message
bind index,pager R   group-reply
bind index,pager \Cd half-down
bind index,pager \Cu half-up
bind index,pager \Cf next-page
bind index,pager \Cb previous-page

bind index,pager f forward-message
bind index,pager p previous-undeleted
bind index,pager n next-undeleted
bind index,pager N next-unread
bind index,pager P previous-unread

bind index,pager X print-message

macro index Z "<shell-escape>mu find --clearlinks --format=links --linksdir=~/.mu/results " "mu find"
macro index S "<change-folder-readonly>~/.mu/results<enter>" "mu find results"

macro attach s <save-entry><kill-line>$HOME/Downloads<enter> "Save to default directory for attachments"

macro pager u <pipe-entry>'urlscan --run "qutebrowser {}"'<enter> 'Follow links with urlscan'

# macro index,pager,attach,compose go "<enter-command> source ~/.mutt/accounts/gmail<Enter><enter-command> my_hdr From: Conner McDaniel <connermcd@gmail.com><Enter><change-folder>=INBOX<Enter>" "Gmail"
# macro compose gi "<esc>f\CuConner McDaniel <connermcd@gmail.com><enter>
# macro index,pager,attach,compose gi "<enter-command> source ~/.mutt/accounts/lsuhsc<Enter><enter-command> my_hdr From: Conner McDaniel <cmcda1@lsuhsc.edu><Enter><change-folder>=INBOX<Enter>" "LSUHSC"
# macro compose gs "<esc>f\CuConner McDaniel <cmcda1@lsuhsc.edu><enter>

# vim: ft=muttrc


================================================
FILE: .mutt/mailcap
================================================
# MS Excel
application/x-msexcel; libreoffice --calc %s
application/ms-exc; libreoffice --calc %s
application/excel; libreoffice --calc %s
application/msexcel; libreoffice --calc %s
application/vnd.ms-exc; libreoffice --calc %s
application/vnd.ms-excel; libreoffice --calc %s

# MS Word
application/msword; libreoffice --writer %s

#
# Star/Open Office Writer
application/vnd.sun.xml.writer; libreoffice --writer %s
application/vnd.sun.xml.writer.global; libreoffice --writer %s
application/vnd.stardivision.writer; libreoffice --writer %s
application/vnd.stardivision.writer-global; libreoffice --writer %s
application/x-starwriter; libreoffice --writer %s
application/vnd.sun.xml.writer.template; libreoffice --writer %s

# Star/Open Office Calc
application/vnd.sun.xml.calc; libreoffice --calc %s
application/vnd.stardivision.calc; libreoffice --calc %s
application/x-starcalc; libreoffice --calc %s
application/vnd.sun.xml.calc.template; libreoffice --calc %s

# Star/Open Office Draw
application/vnd.sun.xml.draw; libreoffice --draw %s
application/vnd.stardivision.draw; libreoffice --draw %s
application/x-stardraw; libreoffice --draw %s
application/vnd.sun.xml.draw.template; libreoffice --draw %s

# Star/Open Office Math
application/vnd.sun.xml.math; libreoffice --math %s
application/vnd.stardivision.math; libreoffice --math %s
application/x-starmath; libreoffice --math %s


# Star/Open Office Impress
application/x-starimpress; libreoffice --impress %s
application/vnd.sun.xml.impress.template; libreoffice --impress %s
application/vnd.sun.xml.impress; libreoffice --impress %s
application/vnd.stardivision.impress; libreoffice --impress %s
application/vnd.stardivision.impress-packed; libreoffice --impress %s

# DOCX and things
application/vnd.sun.xml.writer; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.spreadsheetml.template; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.presentationml.template; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.presentationml.slideshow; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.presentationml.presentation; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.presentationml.slide; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.wordprocessingml.document; libreoffice --writer %s
application/vnd.openxmlformats-officedocument.wordprocessingml.template; libreoffice --writer %s
application/vnd.ms-excel.addin.macroEnabled.12; libreoffice --writer %s
application/vnd.ms-excel.sheet.binary.macroEnabled.12; libreoffice --writer %s

# Images
image/jpeg; sxiv %s
image/pjpeg; sxiv %s
image/png; sxiv %s
image/gif; sxiv %s
image/tiff; sxiv %s

# PDF
application/pdf; zathura %s

# HTML
# text/html; lynx -stdin -dump -force_html ; copiousoutput
text/html; pandoc -f html -t markdown; copiousoutput

# Unidentified.
video/*; mplayer %s


================================================
FILE: .mutt/muttgpg
================================================
my_hdr X-GPG-Key-Server: keys.gnupg.net
my_hdr X-GPG-Key-FingerPrint: 8561 D5FA 7B5C 5DE6 49A1 1534 D187 5497 1147 80A3
set pgp_sign_as=0x114780A3

set pgp_decode_command="gpg %?p?--passphrase-fd 0? --no-verbose --batch --output - %f"
set pgp_verify_command="gpg --no-verbose --batch --output - --verify %s %f"
set pgp_decrypt_command="gpg --passphrase-fd 0 --no-verbose --batch --output - %f"
set pgp_sign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --detach-sign --textmode %?a?-u %a? %f"
set pgp_clearsign_command="gpg --no-verbose --batch --output - --passphrase-fd 0 --armor --textmode --clearsign %?a?-u %a? %f"
set pgp_encrypt_only_command="pgpewrap gpg --batch --quiet --no-verbose --output - --encrypt --textmode --armor --always-trust --encrypt-to 0x114780A3 -- -r %r -- %f"
set pgp_encrypt_sign_command="pgpewrap gpg --passphrase-fd 0 --batch --quiet --no-verbose --textmode --output - --encrypt --sign %?a?-u %a? --armor --always-trust --encrypt-to 0x114780A3 -- -r %r -- %f"
set pgp_import_command="gpg --no-verbose --import -v %f"
set pgp_export_command="gpg --no-verbose --export --armor %r"
set pgp_verify_key_command="gpg --no-verbose --batch --fingerprint --check-sigs %r"
set pgp_list_pubring_command="gpg --no-verbose --batch --with-colons --list-keys %r" 
set pgp_list_secring_command="gpg --no-verbose --batch --with-colons --list-secret-keys %r" 
set pgp_timeout=60
set pgp_good_sign="^gpg: Good signature from"
send-hook '(~t .*)' 'reset pgp_autosign'
send-hook "(~t DUMMY `(gpg --list-keys | sed -ne \
          's/^[^<]*<\([a-z0-9\.\-\_]*@[a-z0-9\.\-\_]*\)>.*/\
          send-hook \"(~t \1)\" \"set pgp_autosign\"/gp' | \
          sort -u >~/.mutt/autosign)`)" 'set pgp_autosign'
source ~/.mutt/autosign

# vim: ft=muttrc


================================================
FILE: .mutt/muttrc
================================================
# first things first
set editor      = "vim +start"

set mail_check  = 0
set copy        = no
set sidebar_visible
set sidebar_width = 20
set sidebar_format = "%B%?F? [%F]?%* %?N?%N/?%S"
set mail_check_stats

source ~/.mutt/keybindings
source ~/.mutt/colorscheme

source ~/.mutt/accounts/fastmail
macro index,pager,attach,compose gf "<enter-command> source ~/.mutt/accounts/fastmail<Enter><enter-command> my_hdr From: Conner McDaniel <conner@fastmail.com><Enter><change-folder>=INBOX<Enter>" "Fastmail"
macro index,pager,attach,compose gs "<enter-command> source ~/.mutt/accounts/lsuhsc<Enter><enter-command> my_hdr From: Conner McDaniel <cmcda1@lsuhsc.edu><Enter><change-folder>=INBOX<Enter>" "LSUHSC"
#

mailboxes +INBOX \
          +Archive \
          +Gmail \

alternative_order text/plain text/enriched text/html
auto_view text/html

# contacts
set query_command       = "mu cfind --format=mutt-ab '%s'"
set sort_alias          = alias
set reverse_alias       = yes

set print_command="muttdoc | pandoc --template=email.tex -V fullpage --latex-engine=xelatex --listings -o ~/email.pdf"

ignore *
unignore date from to cc subject x-mailer x-url user-agent
hdr_order date from cc subject

set header_cache        = ~/.mutt/cache/headers
set message_cachedir    = ~/.mutt/cache/bodies
set certificate_file    = ~/.mutt/certificates
set mailcap_path        = ~/.mutt/mailcap
set signature           = ~/.mutt/signature

# set sidebar_divider_char = '│'
# set sidebar_folder_indent = yes
# set sidebar_format = "%B%?n?*?"
# set sidebar_indent_string = ' '
# set sidebar_short_path = yes
# set sidebar_visible = yes

set date_format         = "%m/%d/%y %l:%M%P"
set forward_edit        = ask-yes
set forward_format      = "Fwd: %s"
set include             = yes
set index_format        = "%2C %Z %d %-20.20F %s (%-4.4c)"
set mime_forward        = yes
set mime_forward_rest   = yes
set move                = no
set print               = yes
set quit                = yes
set sig_dashes          = no
set sort                = 'threads'
set sort_aux            = 'reverse-last-date-received'
set text_flowed         = yes
set timeout             = 1

set delete
set envelope_from
set fast_reply
set forward_quote
set reverse_name
set sig_on_top
set smart_wrap

unset markers
unset wait_key
unset reply_self
unset confirmappend
unset move

# vim: ft=muttrc


================================================
FILE: .mutt/signature
================================================


Conner




================================================
FILE: .tmux.conf
================================================
# UTF8
# set-option -g status-utf8 on
set-option -g xterm-keys on

new-session

# Mac OSX pasteboard
# set-option -g default-command "reattach-to-user-namespace -l zsh"

# prefix
unbind-key C-b
unbind C-v
set -g prefix C-a
bind-key C-a send-prefix

# use vi mode
setw -g mode-keys vi

bind _ split-window -c "#{pane_current_path}"
bind | split-window -h -c "#{pane_current_path}"

# copy mode
bind C-y copy-mode
bind-key p paste-buffer

bind-key -T copy-mode-vi v send -X begin-selection
bind-key -T copy-mode-vi V send -X select-line
bind-key -T copy-mode-vi r send -X rectangle-toggle
bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel "xclip -in -selection clipboard"

# refresh with r
unbind r
bind r source-file ~/.tmux.conf

# vim movement
bind C-j select-pane -D
bind C-k select-pane -U
bind C-l select-pane -R
bind C-h select-pane -L
bind j resize-pane -D 10
bind k resize-pane -U 10
bind l resize-pane -R 20
bind h resize-pane -L 20

# sessions
unbind c
bind c   new-session
bind x   kill-session

# quick controls
bind C-x kill-pane
bind C-c new-window -c "#{pane_current_path}"
bind C-n next-window
bind C-p previous-window
bind C-r rotate-window -D
# bind C-v new-window \; send-keys "vim" \; send-keys "Enter"

# mouse scroll
# set -g mode-mouse on
# set -g mouse-select-pane on
# set -g mouse-select-window on

# set term
set -g default-terminal "screen-256color"
set -g status-fg colour248
set -g status-bg colour235

set -g window-status-format "#[fg=colour248] #I #W "
set -g window-status-current-format "#[fg=colour254,noreverse,bg=colour235] #I #W "

set -g status-right "%a %m/%d %I:%M %P"
set -g status-right-length 300


================================================
FILE: .vim/after/syntax/man.vim
================================================
syn match manSectionHeading "^\s\+[0-9]\+\.[0-9.]*\s\+[A-Z].*$" contains=manSectionNumber
syn match manSectionNumber "^\s\+[0-9]\+\.[0-9]*" contained
syn region manDQString start='[^a-zA-Z"]"[^", )]'lc=1 end='"' contains=manSQString
syn region manSQString start="[ \t]'[^', )]"lc=1 end="'"
syn region manSQString start="^'[^', )]"lc=1 end="'"
syn region manBQString start="[^a-zA-Z`]`[^`, )]"lc=1 end="[`']"
syn region manBQSQString start="``[^),']" end="''"
syn match manBulletZone transparent "^\s\+o\s" contains=manBullet
syn case match
syn keyword manBullet contained o
syn match manBullet contained "\[+*]"
syn match manSubSectionStart "^\*" skipwhite nextgroup=manSubSection
syn match manSubSection ".*$" contained

hi link manSectionNumber Number
hi link manDQString String
hi link manSQString String
hi link manBQString String
hi link manBQSQString String
hi link manBullet Special
hi manSubSectionStart term=NONE cterm=NONE gui=NONE ctermfg=black ctermbg=black guifg=navyblue guibg=navyblue
hi manSubSection term=underline cterm=underline gui=underline ctermfg=green guifg=green

set ts=8


================================================
FILE: .vim/colors/apprentice.vim
================================================
" 'apprentice.vim' -- Vim color scheme.
" Author:       Romain Lafourcade (romainlafourcade@gmail.com)
" Description:  Essentially a streamlining and conversion to xterm colors of
"               'sorcerer' by Jeet Sukumaran (jeetsukumaran@gmailcom)
" Last Change:  2017 Oct 07

" MADE-UP NAME    HEX        RGB                   XTERM  ANSI
" ========================================================================
" almost black    #1c1c1c    rgb(28, 28, 28)       234    0
" darker grey     #262626    rgb(38, 38, 38)       235    background color
" dark grey       #303030    rgb(48, 48, 48)       236    8
" grey            #444444    rgb(68, 68, 68)       238    8
" medium grey     #585858    rgb(88, 88, 88)       240    8
" light grey      #6c6c6c    rgb(108, 108, 108)    242    7
" lighter grey    #bcbcbc    rgb(188, 188, 188)    250    foreground color
" white           #ffffff    rgb(255, 255, 255)    231    15
" purple          #5f5f87    rgb(95, 95, 135)      60     5
" light purple    #8787af    rgb(135, 135, 175)    103    13
" green           #5f875f    rgb(95, 135, 95)      65     2
" light green     #87af87    rgb(135, 175, 135)    108    10
" aqua            #5f8787    rgb(95, 135, 135)     66     6
" light aqua      #5fafaf    rgb(95, 175, 175)     73     14
" blue            #5f87af    rgb(95, 135, 175)     67     4
" light blue      #8fafd7    rgb(143, 175, 215)    110    12
" red             #af5f5f    rgb(175, 95, 95)      131    1
" orange          #ff8700    rgb(255, 135, 0)      208    9
" ocre            #87875f    rgb(135, 135, 95)     101    3
" yellow          #ffffaf    rgb(255, 255, 175)    229    11

hi clear

if exists("syntax_on")
  syntax reset
endif

let colors_name = "apprentice"

if ($TERM =~ '256' || &t_Co >= 256) || has("gui_running")
  hi Normal           ctermbg=235  ctermfg=250  guibg=#262626 guifg=#bcbcbc cterm=NONE           gui=NONE
  hi Terminal         ctermbg=235  ctermfg=250  guibg=#262626 guifg=#bcbcbc cterm=NONE           gui=NONE
  hi LineNr           ctermbg=234  ctermfg=242  guibg=#1c1c1c guifg=#6c6c6c cterm=NONE           gui=NONE
  hi FoldColumn       ctermbg=234  ctermfg=242  guibg=#1c1c1c guifg=#6c6c6c cterm=NONE           gui=NONE
  hi Folded           ctermbg=234  ctermfg=242  guibg=#1c1c1c guifg=#6c6c6c cterm=NONE           gui=NONE
  hi MatchParen       ctermbg=234  ctermfg=229  guibg=#1c1c1c guifg=#ffffaf cterm=NONE           gui=NONE
  hi signColumn       ctermbg=234  ctermfg=242  guibg=#1c1c1c guifg=#6c6c6c cterm=NONE           gui=NONE

  set background=dark

  hi Comment          ctermbg=NONE ctermfg=240  guibg=NONE    guifg=#585858 cterm=NONE           gui=NONE
  hi Conceal          ctermbg=NONE ctermfg=250  guibg=NONE    guifg=#bcbcbc cterm=NONE           gui=NONE
  hi Constant         ctermbg=NONE ctermfg=208  guibg=NONE    guifg=#ff8700 cterm=NONE           gui=NONE
  hi Error            ctermbg=NONE ctermfg=131  guibg=NONE    guifg=#af5f5f cterm=reverse        gui=reverse
  hi Identifier       ctermbg=NONE ctermfg=67   guibg=NONE    guifg=#5f87af cterm=NONE           gui=NONE
  hi Ignore           ctermbg=NONE ctermfg=NONE guibg=NONE    guifg=NONE    cterm=NONE           gui=NONE
  hi PreProc          ctermbg=NONE ctermfg=66   guibg=NONE    guifg=#5f8787 cterm=NONE           gui=NONE
  hi Special          ctermbg=NONE ctermfg=65   guibg=NONE    guifg=#5f875f cterm=NONE           gui=NONE
  hi Statement        ctermbg=NONE ctermfg=110  guibg=NONE    guifg=#8fafd7 cterm=NONE           gui=NONE
  hi String           ctermbg=NONE ctermfg=108  guibg=NONE    guifg=#87af87 cterm=NONE           gui=NONE
  hi Todo             ctermbg=NONE ctermfg=NONE guibg=NONE    guifg=NONE    cterm=reverse        gui=reverse
  hi Type             ctermbg=NONE ctermfg=103  guibg=NONE    guifg=#8787af cterm=NONE           gui=NONE
  hi Underlined       ctermbg=NONE ctermfg=66   guibg=NONE    guifg=#5f8787 cterm=underline      gui=underline

  hi NonText          ctermbg=NONE ctermfg=240  guibg=NONE    guifg=#585858 cterm=NONE           gui=NONE

  hi Pmenu            ctermbg=238  ctermfg=250  guibg=#444444 guifg=#bcbcbc cterm=NONE           gui=NONE
  hi PmenuSbar        ctermbg=240  ctermfg=NONE guibg=#585858 guifg=NONE    cterm=NONE           gui=NONE
  hi PmenuSel         ctermbg=66   ctermfg=235  guibg=#5f8787 guifg=#262626 cterm=NONE           gui=NONE
  hi PmenuThumb       ctermbg=66   ctermfg=66   guibg=#5f8787 guifg=#5f8787 cterm=NONE           gui=NONE

  hi ErrorMsg         ctermbg=131  ctermfg=235  guibg=#af5f5f guifg=#262626 cterm=NONE           gui=NONE
  hi ModeMsg          ctermbg=108  ctermfg=235  guibg=#87af87 guifg=#262626 cterm=NONE           gui=NONE
  hi MoreMsg          ctermbg=NONE ctermfg=66   guibg=NONE    guifg=#5f8787 cterm=NONE           gui=NONE
  hi Question         ctermbg=NONE ctermfg=108  guibg=NONE    guifg=#87af87 cterm=NONE           gui=NONE
  hi WarningMsg       ctermbg=NONE ctermfg=131  guibg=NONE    guifg=#af5f5f cterm=NONE           gui=NONE

  hi TabLine          ctermbg=238  ctermfg=101  guibg=#444444 guifg=#87875f cterm=NONE           gui=NONE
  hi TabLineFill      ctermbg=238  ctermfg=238  guibg=#444444 guifg=#444444 cterm=NONE           gui=NONE
  hi TabLineSel       ctermbg=101  ctermfg=235  guibg=#87875f guifg=#262626 cterm=NONE           gui=NONE

  hi Cursor           ctermbg=242  ctermfg=NONE guibg=#6c6c6c guifg=NONE    cterm=NONE           gui=NONE
  hi CursorColumn     ctermbg=236  ctermfg=NONE guibg=#303030 guifg=NONE    cterm=NONE           gui=NONE
  hi CursorLineNr     ctermbg=236  ctermfg=73   guibg=#303030 guifg=#5fafaf cterm=NONE           gui=NONE
  hi CursorLine       ctermbg=236  ctermfg=NONE guibg=#303030 guifg=NONE    cterm=NONE           gui=NONE

  hi helpLeadBlank    ctermbg=NONE ctermfg=NONE guibg=NONE    guifg=NONE    cterm=NONE           gui=NONE
  hi helpNormal       ctermbg=NONE ctermfg=NONE guibg=NONE    guifg=NONE    cterm=NONE           gui=NONE

  hi StatusLine       ctermbg=101  ctermfg=235  guibg=#87875f guifg=#262626 cterm=NONE           gui=NONE
  hi StatusLineNC     ctermbg=238  ctermfg=101  guibg=#444444 guifg=#87875f cterm=NONE           gui=NONE

  hi StatusLineTerm   ctermbg=101  ctermfg=235  guibg=#87875f guifg=#262626 cterm=NONE           gui=NONE
  hi StatusLineTermNC ctermbg=238  ctermfg=101  guibg=#444444 guifg=#87875f cterm=NONE           gui=NONE

  hi Visual           ctermbg=235  ctermfg=110  guibg=#262626 guifg=#8fafd7 cterm=reverse        gui=reverse
  hi VisualNOS        ctermbg=NONE ctermfg=NONE guibg=NONE    guifg=NONE    cterm=underline      gui=underline

  hi VertSplit        ctermbg=238  ctermfg=238  guibg=#444444 guifg=#444444 cterm=NONE           gui=NONE
  hi WildMenu         ctermbg=110  ctermfg=235  guibg=#8fafd7 guifg=#262626 cterm=NONE           gui=NONE

  hi Function         ctermbg=NONE ctermfg=229  guibg=NONE    guifg=#ffffaf cterm=NONE           gui=NONE
  hi SpecialKey       ctermbg=NONE ctermfg=240  guibg=NONE    guifg=#585858 cterm=NONE           gui=NONE
  hi Title            ctermbg=NONE ctermfg=231  guibg=NONE    guifg=#ffffff cterm=NONE           gui=NONE

  hi DiffAdd          ctermbg=235  ctermfg=108  guibg=#262626 guifg=#87af87 cterm=reverse        gui=reverse
  hi DiffChange       ctermbg=235  ctermfg=103  guibg=#262626 guifg=#8787af cterm=reverse        gui=reverse
  hi DiffDelete       ctermbg=235  ctermfg=131  guibg=#262626 guifg=#af5f5f cterm=reverse        gui=reverse
  hi DiffText         ctermbg=235  ctermfg=208  guibg=#262626 guifg=#ff8700 cterm=reverse        gui=reverse

  hi IncSearch        ctermbg=131  ctermfg=235  guibg=#af5f5f guifg=#262626 cterm=NONE           gui=NONE
  hi Search           ctermbg=229  ctermfg=235  guibg=#ffffaf guifg=#262626 cterm=NONE           gui=NONE

  hi Directory        ctermbg=NONE ctermfg=73   guibg=NONE    guifg=#5fafaf cterm=NONE           gui=NONE

  hi debugPC          ctermbg=67                guibg=#5f87af
  hi debugBreakpoint  ctermbg=131               guibg=#af5f5f

  if has("gui_running")
    hi SpellBad       ctermbg=NONE ctermfg=131  guibg=NONE    guifg=NONE    cterm=undercurl      gui=undercurl guisp=#af5f5f
    hi SpellCap       ctermbg=NONE ctermfg=73   guibg=NONE    guifg=NONE    cterm=undercurl      gui=undercurl guisp=#5fafaf
    hi SpellLocal     ctermbg=NONE ctermfg=65   guibg=NONE    guifg=NONE    cterm=undercurl      gui=undercurl guisp=#5f875f
    hi SpellRare      ctermbg=NONE ctermfg=208  guibg=NONE    guifg=NONE    cterm=undercurl      gui=undercurl guisp=#ff8700
  else
    hi SpellBad       ctermbg=NONE ctermfg=131  guibg=NONE    guifg=#af5f5f cterm=undercurl      gui=undercurl guisp=NONE
    hi SpellCap       ctermbg=NONE ctermfg=73   guibg=NONE    guifg=#5fafaf cterm=undercurl      gui=undercurl guisp=NONE
    hi SpellLocal     ctermbg=NONE ctermfg=65   guibg=NONE    guifg=#5f875f cterm=undercurl      gui=undercurl guisp=NONE
    hi SpellRare      ctermbg=NONE ctermfg=208  guibg=NONE    guifg=#ff8700 cterm=undercurl      gui=undercurl guisp=NONE
  endif

  hi ColorColumn      ctermbg=234  ctermfg=NONE guibg=#1c1c1c guifg=NONE    cterm=NONE           gui=NONE
elseif &t_Co == 8 || $TERM !~# '^linux' || &t_Co == 16
  set t_Co=16

  hi Normal           ctermbg=NONE        ctermfg=white          cterm=NONE
  hi Terminal         ctermbg=NONE        ctermfg=white          cterm=NONE

  set background=dark

  hi Comment          ctermbg=NONE        ctermfg=gray        cterm=NONE
  hi Conceal          ctermbg=NONE        ctermfg=white       cterm=NONE
  hi Constant         ctermbg=NONE        ctermfg=red         cterm=NONE
  hi Function         ctermbg=NONE        ctermfg=yellow      cterm=NONE
  hi Identifier       ctermbg=NONE        ctermfg=darkblue    cterm=NONE
  hi PreProc          ctermbg=NONE        ctermfg=darkcyan    cterm=NONE
  hi Special          ctermbg=NONE        ctermfg=darkgreen   cterm=NONE
  hi Statement        ctermbg=NONE        ctermfg=blue        cterm=NONE
  hi String           ctermbg=NONE        ctermfg=green       cterm=NONE
  hi Todo             ctermbg=NONE        ctermfg=NONE        cterm=reverse
  hi Type             ctermbg=NONE        ctermfg=magenta     cterm=NONE

  hi Error            ctermbg=NONE        ctermfg=darkred     cterm=reverse
  hi Ignore           ctermbg=NONE        ctermfg=NONE        cterm=NONE
  hi Underlined       ctermbg=NONE        ctermfg=NONE        cterm=reverse

  hi LineNr           ctermbg=black       ctermfg=gray        cterm=NONE
  hi NonText          ctermbg=NONE        ctermfg=darkgray    cterm=NONE

  hi Pmenu            ctermbg=darkgray    ctermfg=white       cterm=NONE
  hi PmenuSbar        ctermbg=gray        ctermfg=NONE        cterm=NONE
  hi PmenuSel         ctermbg=darkcyan    ctermfg=black       cterm=NONE
  hi PmenuThumb       ctermbg=darkcyan    ctermfg=NONE        cterm=NONE

  hi ErrorMsg         ctermbg=darkred     ctermfg=black       cterm=NONE
  hi ModeMsg          ctermbg=darkgreen   ctermfg=black       cterm=NONE
  hi MoreMsg          ctermbg=NONE        ctermfg=darkcyan    cterm=NONE
  hi Question         ctermbg=NONE        ctermfg=green       cterm=NONE
  hi WarningMsg       ctermbg=NONE        ctermfg=darkred     cterm=NONE

  hi TabLine          ctermbg=darkgray    ctermfg=darkyellow  cterm=NONE
  hi TabLineFill      ctermbg=darkgray    ctermfg=black       cterm=NONE
  hi TabLineSel       ctermbg=darkyellow  ctermfg=black       cterm=NONE

  hi Cursor           ctermbg=NONE        ctermfg=NONE        cterm=NONE
  hi CursorColumn     ctermbg=darkgray    ctermfg=NONE        cterm=NONE
  hi CursorLineNr     ctermbg=black       ctermfg=cyan        cterm=NONE
  hi CursorLine       ctermbg=darkgray    ctermfg=NONE        cterm=NONE

  hi helpLeadBlank    ctermbg=NONE        ctermfg=NONE        cterm=NONE
  hi helpNormal       ctermbg=NONE        ctermfg=NONE        cterm=NONE

  hi StatusLine       ctermbg=darkyellow  ctermfg=black       cterm=NONE
  hi StatusLineNC     ctermbg=darkgray    ctermfg=darkyellow  cterm=NONE

  hi StatusLineterm   ctermbg=darkyellow  ctermfg=black       cterm=NONE
  hi StatusLinetermNC ctermbg=darkgray    ctermfg=darkyellow  cterm=NONE

  hi Visual           ctermbg=black       ctermfg=blue        cterm=reverse
  hi VisualNOS        ctermbg=black       ctermfg=white       cterm=reverse

  hi FoldColumn       ctermbg=black       ctermfg=darkgray    cterm=NONE
  hi Folded           ctermbg=black       ctermfg=darkgray    cterm=NONE

  hi VertSplit        ctermbg=darkgray    ctermfg=darkgray    cterm=NONE
  hi WildMenu         ctermbg=blue        ctermfg=black       cterm=NONE

  hi SpecialKey       ctermbg=NONE        ctermfg=darkgray    cterm=NONE
  hi Title            ctermbg=NONE        ctermfg=white       cterm=NONE

  hi DiffAdd          ctermbg=black       ctermfg=green       cterm=reverse
  hi DiffChange       ctermbg=black       ctermfg=magenta     cterm=reverse
  hi DiffDelete       ctermbg=black       ctermfg=darkred     cterm=reverse
  hi DiffText         ctermbg=black       ctermfg=red         cterm=reverse

  hi IncSearch        ctermbg=darkred     ctermfg=black       cterm=NONE
  hi Search           ctermbg=yellow      ctermfg=black       cterm=NONE

  hi Directory        ctermbg=NONE        ctermfg=cyan        cterm=NONE
  hi MatchParen       ctermbg=black       ctermfg=yellow      cterm=NONE

  hi SpellBad         ctermbg=NONE        ctermfg=darkred     cterm=undercurl
  hi SpellCap         ctermbg=NONE        ctermfg=darkyellow  cterm=undercurl
  hi SpellLocal       ctermbg=NONE        ctermfg=darkgreen   cterm=undercurl
  hi SpellRare        ctermbg=NONE        ctermfg=darkmagenta cterm=undercurl

  hi ColorColumn      ctermbg=black       ctermfg=NONE        cterm=NONE
  hi SignColumn       ctermbg=black       ctermfg=darkgray    cterm=NONE

  hi debugPC          ctermbg=blue
  hi debugBreakpoint  ctermbg=red
endif

let g:terminal_ansi_colors = [
            \ '#1c1c1c',
            \ '#af5f5f',
            \ '#5f875f',
            \ '#87875f',
            \ '#5f87af',
            \ '#5f5f87',
            \ '#5f8787',
            \ '#6c6c6c',
            \ '#444444',
            \ '#ff8700',
            \ '#87af87',
            \ '#ffffaf',
            \ '#8fafd7',
            \ '#8787af',
            \ '#5fafaf',
            \ '#ffffff'
            \ ]

let links = [
            \ ['Boolean', 'Constant'],
            \ ['Character', 'Constant'],
            \ ['Conditional', 'Statement'],
            \ ['Debug', 'Special'],
            \ ['Define', 'PreProc'],
            \ ['Delimiter', 'Special'],
            \ ['Exception', 'Statement'],
            \ ['Float', 'Number'],
            \ ['HelpCommand', 'Statement'],
            \ ['HelpExample', 'Statement'],
            \ ['Include', 'PreProc'],
            \ ['Keyword', 'Statement'],
            \ ['Label', 'Statement'],
            \ ['Macro', 'PreProc'],
            \ ['Number', 'Constant'],
            \ ['Operator', 'Statement'],
            \ ['PreCondit', 'PreProc'],
            \ ['Repeat', 'Statement'],
            \ ['SpecialChar', 'Special'],
            \ ['SpecialComment', 'Special'],
            \ ['StorageClass', 'Type'],
            \ ['Structure', 'Type'],
            \ ['Tag', 'Special'],
            \ ['Terminal', 'Normal'],
            \ ['Typedef', 'Type'],
            \ ['htmlEndTag', 'htmlTagName'],
            \ ['htmlLink', 'Function'],
            \ ['htmlSpecialTagName', 'htmlTagName'],
            \ ['htmlTag', 'htmlTagName'],
            \ ['htmlBold', 'Normal'],
            \ ['htmlItalic', 'Normal'],
            \ ['xmlTag', 'Statement'],
            \ ['xmlTagName', 'Statement'],
            \ ['xmlEndTag', 'Statement'],
            \ ['markdownItalic', 'Preproc'],
            \ ['asciidocQuotedEmphasized', 'Preproc'],
            \ ['diffBDiffer', 'WarningMsg'],
            \ ['diffCommon', 'WarningMsg'],
            \ ['diffDiffer', 'WarningMsg'],
            \ ['diffIdentical', 'WarningMsg'],
            \ ['diffIsA', 'WarningMsg'],
            \ ['diffNoEOL', 'WarningMsg'],
            \ ['diffOnly', 'WarningMsg'],
            \ ['diffRemoved', 'WarningMsg'],
            \ ['diffAdded', 'String'],
            \ ]
augroup Apprentice
    autocmd!
    autocmd ColorScheme * if expand("<amatch>") == "apprentice" | for link in links | execute 'hi link' link[0] link[1] | endfor | else | for link in links | execute 'hi link' link[0] 'NONE' | endfor | endif
augroup END


================================================
FILE: .vim/colors/blackboard.vim
================================================
" Vim color scheme
"
" Name:         blackboard.vim
" Maintainer:   Ben Wyrosdick <ben.wyrosdick@gmail.com>
" Last Change:  20 August 2009
" License:      public domain
" Version:      1.4

set background=dark
hi clear
if exists("syntax_on")
   syntax reset
endif

let g:colors_name = "blackboard"

" Colours in use
" --------------
" #FF5600 bright orange
" #FFDE00 yolk yellow
" #D8FA3C lemon yellow
" #61CE3C green
" #84A7C1 light blue
" #AEAEAE medium grey

if has("gui_running")
  "GUI Colors
  highlight Normal guifg=White   guibg=#0B1022
  highlight Cursor guifg=Black   guibg=Yellow
  highlight CursorLine guibg=#191E2F
  highlight LineNr guibg=#323232 guifg=#888888
  highlight Folded guifg=#1d2652 guibg=#070a15
  highlight Pmenu guibg=#84A7C1
  highlight Visual guibg=#283A76

  "General Colors
  highlight Comment guifg=#AEAEAE
  highlight Constant guifg=#D8FA3C
  highlight Keyword guifg=#FFDE00
  highlight String guifg=#61CE3C
  highlight Type guifg=#84A7C1
  highlight Identifier guifg=#61CE3C gui=NONE
  highlight Function guifg=#FF5600 gui=NONE
  highlight clear Search
  highlight Search guibg=#1C3B79
  highlight PreProc guifg=#FF5600

  " StatusLine
  highlight StatusLine  guifg=#000000 guibg=#ffffaf gui=italic
  highlight StatusLineNC  guifg=#000000 guibg=#ffffff gui=NONE

  "Invisible character colors
  highlight NonText guifg=#4a4a59
  highlight SpecialKey guifg=#4a4a59

  "HTML Colors
  highlight link htmlTag Type
  highlight link htmlEndTag htmlTag
  highlight link htmlTagName htmlTag

  "Ruby Colors
  highlight link rubyClass Keyword
  highlight link rubyDefine Keyword
  highlight link rubyConstant Type
  highlight link rubySymbol Constant
  highlight link rubyStringDelimiter rubyString
  highlight link rubyInclude Keyword
  highlight link rubyAttribute Keyword
  highlight link rubyInstanceVariable Normal

  "Rails Colors
  highlight link railsMethod Type

  "Sass colors
  highlight link sassMixin Keyword
  highlight link sassMixing Constant

  "Outliner colors
  highlight OL1 guifg=#FF5600
  highlight OL2 guifg=#61CE3C
  highlight OL3 guifg=#84A7C1
  highlight OL4 guifg=#D8FA3C
  highlight BT1 guifg=#AEAEAE
  highlight link BT2 BT1
  highlight link BT3 BT1
  highlight link BT4 BT1

  "Markdown colors
  highlight markdownCode guifg=#61CE3C guibg=#070a15
  highlight link markdownCodeBlock markdownCode

  "Git colors
  highlight gitcommitSelectedFile guifg=#61CE3C
  highlight gitcommitDiscardedFile guifg=#C23621
  highlight gitcommitWarning guifg=#C23621
  highlight gitcommitBranch guifg=#FFDE00
  highlight gitcommitHeader guifg=#84A7C1

end


================================================
FILE: .vim/colors/distinguished.vim
================================================
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
" Source repository: https://github.com/Lokaltog/vim-distinguished

" Initialization {{{
	set background=dark

	hi clear
	if exists('syntax_on')
		syntax reset
	endif

	let g:colors_name = 'distinguished'

	if ! has('gui_running')
		if &t_Co != 256
			echoe 'The ' . g:colors_name . ' color scheme requires gvim or a 256-color terminal'

			finish
		endif
	endif
" }}}
" Color dictionary parser {{{
	function! s:ColorDictParser(color_dict)
		for [group, group_colors] in items(a:color_dict)
			exec 'hi ' . group
				\ . ' ctermfg=' . (group_colors[0] == '' ? 'NONE' :       group_colors[0])
				\ . ' ctermbg=' . (group_colors[1] == '' ? 'NONE' :       group_colors[1])
				\ . '   cterm=' . (group_colors[2] == '' ? 'NONE' :       group_colors[2])
				\
				\ . '   guifg=' . (group_colors[3] == '' ? 'NONE' : '#' . group_colors[3])
				\ . '   guibg=' . (group_colors[4] == '' ? 'NONE' : '#' . group_colors[4])
				\ . '     gui=' . (group_colors[5] == '' ? 'NONE' :       group_colors[5])
		endfor
	endfunction
" }}}

"	   | Highlight group                |  CTFG |  CTBG |    CTAttributes | || |   GUIFG |    GUIBG |   GUIAttributes |
"	   |--------------------------------|-------|-------|-----------------| || |---------|----------|-----------------|
call s:ColorDictParser({
	\   'Normal'                      : [    231,     16,               '',      'ffffff',  '000000',               '']
	\ , 'Visual'                      : [    240,    253,               '',      '585858',  'dadada',               '']
	\
	\ , 'Cursor'                      : [     '',     '',               '',      'ffffff',  'dd4010',               '']
	\ , 'lCursor'                     : [     '',     '',               '',      'ffffff',  '89b6e2',               '']
	\
	\ , 'CursorLine'                  : [     16,    231,               '',            '',  '3a3a3a',               '']
	\ , 'CursorColumn'                : [    231,    237,               '',      'ffffff',  '3a3a3a',               '']
	\
	\ , 'Folded'                      : [    249,    234,               '',      'b2b2b2',  '1c1c1c',               '']
	\ , 'FoldColumn'                  : [    243,    234,               '',      '767676',  '1c1c1c',               '']
	\ , 'SignColumn'                  : [    231,    233,           'bold',      'ffffff',  '121212',           'bold']
	\ , 'ColorColumn'                 : [      '',   233,               '',            '',  '262626',               '']
	\
	\ , 'StatusLine'                  : [    231,    236,           'bold',      'ffffff',  '303030',           'bold']
	\ , 'StatusLineNC'                : [    244,    232,               '',      '808080',  '080808',               '']
	\
	\ , 'LineNr'                      : [    243,    235,               '',      '767676',  '262626',               '']
	\ , 'VertSplit'                   : [    240,     '',               '',      '585858',  '1c1c1c',               '']
	\
	\ , 'WildMenu'                    : [    234,    231,               '',      '1c1c1c',  'ffffff',               '']
	\ , 'Directory'                   : [    143,     '',           'bold',      'afaf5f',        '',           'bold']
	\ , 'Underlined'                  : [    130,     '',               '',      'af5f00',        '',               '']
	\
	\ , 'Question'                    : [     74,     '',           'bold',      '5fafd7',        '',           'bold']
	\ , 'MoreMsg'                     : [    214,     '',           'bold',      'ffaf00',        '',           'bold']
	\ , 'WarningMsg'                  : [    202,     '',           'bold',      'ff5f00',        '',           'bold']
	\ , 'ErrorMsg'                    : [    196,     '',           'bold',      'ff0000',        '',           'bold']
	\
	\ , 'Comment'                     : [    243,    233,               '',      '767676',  '121212',               '']
	\ , 'vimCommentTitleLeader'       : [    250,    233,               '',      'bcbcbc',  '121212',               '']
	\ , 'vimCommentTitle'             : [    250,    233,               '',      'bcbcbc',  '121212',               '']
	\ , 'vimCommentString'            : [    245,    233,               '',      '8a8a8a',  '121212',               '']
	\
	\ , 'TabLine'                     : [    231,    238,               '',      'ffffff',  '444444',               '']
	\ , 'TabLineSel'                  : [    255,     '',           'bold',      'eeeeee',        '',           'bold']
	\ , 'TabLineFill'                 : [    240,    238,               '',      '585858',  '444444',               '']
	\ , 'TabLineNumber'               : [    160,    238,           'bold',      'd70000',  '444444',           'bold']
	\ , 'TabLineClose'                : [    245,    238,           'bold',      '8a8a8a',  '444444',           'bold']
	\
	\ , 'SpellCap'                    : [    231,     31,           'bold',      'ffffff',  '0087af',           'bold']
	\
	\ , 'SpecialKey'                  : [    239,     '',               '',      '4e4e4e',        '',               '']
	\ , 'NonText'                     : [     88,     '',               '',      '870000',        '',               '']
	\ , 'MatchParen'                  : [    231,     25,           'bold',      'ffffff',  '005faf',           'bold']
	\
	\ , 'Constant'                    : [    137,     '',           'bold',      'af875f',        '',           'bold']
	\ , 'Special'                     : [    150,     '',               '',      'afd787',        '',               '']
	\ , 'Identifier'                  : [     66,     '',           'bold',      '5f8787',        '',           'bold']
	\ , 'Statement'                   : [    186,     '',           'bold',      'd7d787',        '',           'bold']
	\ , 'PreProc'                     : [    247,     '',               '',      '9e9e9e',        '',               '']
	\ , 'Type'                        : [     67,     '',           'bold',      '5f87af',        '',           'bold']
	\ , 'String'                      : [    143,     '',               '',      'afaf5f',        '',               '']
	\ , 'Number'                      : [    173,     '',               '',      'd7875f',        '',               '']
	\ , 'Define'                      : [    173,     '',               '',      'd7875f',        '',               '']
	\ , 'Error'                       : [    208,    124,               '',      'ff8700',  'af0000',               '']
	\ , 'Function'                    : [    179,     '',               '',      'd7af5f',        '',               '']
	\ , 'Include'                     : [    173,     '',               '',      'd7875f',        '',               '']
	\ , 'PreCondit'                   : [    173,     '',               '',      'd7875f',        '',               '']
	\ , 'Keyword'                     : [    173,     '',               '',      'd7875f',        '',               '']
	\ , 'Search'                      : [    231,    131,               '',      '000000',  'ffff5f', 'underline,bold']
	\ , 'Title'                       : [    231,     '',               '',      'ffffff',        '',               '']
	\ , 'Delimiter'                   : [    246,     '',               '',      '949494',        '',               '']
	\ , 'StorageClass'                : [    187,     '',               '',      'd7d7af',        '',               '']
	\
	\ , 'TODO'                        : [    228,     94,           'bold',      'ffff87',  '875f00',           'bold']
	\
	\ , 'SyntasticWarning'            : [    220,     94,               '',      'ffff87',  '875f00',           'bold']
	\ , 'SyntasticError'              : [    202,     52,               '',      'ffff87',  '875f00',           'bold']
	\
	\ , 'Pmenu'                       : [    248,    240,               '',      'a8a8a8',  '585858',               '']
	\ , 'PmenuSel'                    : [    253,    245,               '',      'dadada',  '8a8a8a',               '']
	\ , 'PmenuSbar'                   : [    253,    248,               '',      'dadada',  'a8a8a8',               '']
	\
	\ , 'phpEOL'                      : [    245,     '',               '',      'dadada',        '',               '']
	\ , 'phpStringDelim'              : [     94,     '',               '',      '875f00',        '',               '']
	\ , 'phpDelimiter'                : [    160,     '',               '',      'd70000',        '',               '']
	\ , 'phpFunctions'                : [    221,     '',           'bold',      'ffd75f',        '',           'bold']
	\ , 'phpBoolean'                  : [    172,     '',           'bold',      'd78700',        '',           'bold']
	\ , 'phpOperator'                 : [    215,     '',               '',      'ffaf5f',        '',               '']
	\ , 'phpMemberSelector'           : [    138,     '',           'bold',      'af8787',        '',           'bold']
	\ , 'phpParent'                   : [    227,     '',               '',      'ffff5f',        '',               '']
	\
	\ , 'PHPClassTag'                 : [    253,     '',               '',      'dadada',        '',               '']
	\ , 'PHPInterfaceTag'             : [    253,     '',               '',      'dadada',        '',               '']
	\ , 'PHPFunctionTag'              : [    222,     '',           'bold',      'ffd787',        '',           'bold']
	\
	\ , 'pythonDocString'             : [    240,    233,               '',      '585858',  '121212',               '']
	\ , 'pythonDocStringTitle'        : [    245,    233,               '',      'dadada',  '121212',               '']
	\ , 'pythonRun'                   : [     65,     '',               '',      '5f875f',        '',               '']
	\ , 'pythonBuiltinObj'            : [     67,     '',           'bold',      '5f87af',        '',           'bold']
	\ , 'pythonSelf'                  : [    250,     '',           'bold',      'bcbcbc',        '',           'bold']
	\ , 'pythonFunction'              : [    179,     '',           'bold',      'd7af5f',        '',           'bold']
	\ , 'pythonClass'                 : [    221,     '',           'bold',      'ffd75f',        '',           'bold']
	\ , 'pythonExClass'               : [    130,     '',               '',      'af5f00',        '',               '']
	\ , 'pythonException'             : [    130,     '',           'bold',      'af5f00',        '',           'bold']
	\ , 'pythonOperator'              : [    186,     '',               '',      'd7d787',        '',               '']
	\ , 'pythonPreCondit'             : [    152,     '',           'bold',      'afd7d7',        '',           'bold']
	\ , 'pythonDottedName'            : [    166,     '',               '',      'd75f00',        '',               '']
	\ , 'pythonDecorator'             : [    124,     '',           'bold',      'af0000',        '',           'bold']
	\
	\ , 'PythonInterfaceTag'          : [    109,     '',               '',      '87afaf',        '',               '']
	\ , 'PythonClassTag'              : [    221,     '',               '',      'ffd75f',        '',               '']
	\ , 'PythonFunctionTag'           : [    109,     '',               '',      '87afaf',        '',               '']
	\ , 'PythonVariableTag'           : [    253,     '',               '',      'dadada',        '',               '']
	\ , 'PythonMemberTag'             : [    145,     '',               '',      'afafaf',        '',               '']
	\
	\ , 'CTagsImport'                 : [    109,     '',               '',      '87afaf',        '',               '']
	\ , 'CTagsClass'                  : [    221,     '',               '',      'ffd75f',        '',               '']
	\ , 'CTagsFunction'               : [    109,     '',               '',      '87afaf',        '',               '']
	\ , 'CTagsGlobalVariable'         : [    253,     '',               '',      'dadada',        '',               '']
	\ , 'CTagsMember'                 : [    145,     '',               '',      'afafaf',        '',               '']
	\
	\ , 'xmlTag'                      : [    149,     '',           'bold',      'afd75f',        '',           'bold']
	\ , 'xmlTagName'                  : [    250,     '',               '',      'bcbcbc',        '',               '']
	\ , 'xmlEndTag'                   : [    209,     '',           'bold',      'ff875f',        '',           'bold']
	\
	\ , 'cssImportant'                : [    166,     '',           'bold',      'd75f00',        '',           'bold']
	\
	\ , 'DiffAdd'                     : [    112,     22,               '',      '87d700',  '005f00',               '']
	\ , 'DiffChange'                  : [    220,     94,               '',      'ffd700',  '875f00',               '']
	\ , 'DiffDelete'                  : [    160,     '',               '',      'd70000',        '',               '']
	\ , 'DiffText'                    : [    220,     94,   'reverse,bold',      'ffd700',  '875f00',   'reverse,bold']
	\
	\ , 'diffLine'                    : [     68,     '',           'bold',      '5f87d7',        '',           'bold']
	\ , 'diffFile'                    : [    242,     '',               '',      '6c6c6c',        '',               '']
	\ , 'diffNewFile'                 : [    242,     '',               '',      '6c6c6c',        '',               '']
\ })

hi link htmlTag            xmlTag
hi link htmlTagName        xmlTagName
hi link htmlEndTag         xmlEndTag

hi link phpCommentTitle    vimCommentTitle
hi link phpDocTags         vimCommentString
hi link phpDocParam        vimCommentTitle

hi link diffAdded          DiffAdd
hi link diffChanged        DiffChange
hi link diffRemoved        DiffDelete


================================================
FILE: .vim/colors/grb256.vim
================================================
" Based on
runtime colors/ir_black.vim

let g:colors_name = "grb256"

hi pythonSpaceError ctermbg=red guibg=red

hi Comment ctermfg=darkgray

hi StatusLine ctermbg=darkgrey ctermfg=white
hi StatusLineNC ctermbg=black ctermfg=lightgrey
hi VertSplit ctermbg=black ctermfg=lightgrey
hi LineNr ctermfg=darkgray
hi CursorLine     guifg=NONE        guibg=#121212     gui=NONE      ctermfg=NONE        ctermbg=234
hi Function         guifg=#FFD2A7     guibg=NONE        gui=NONE      ctermfg=yellow       ctermbg=NONE        cterm=NONE
hi Visual           guifg=NONE        guibg=#262D51     gui=NONE      ctermfg=NONE        ctermbg=236    cterm=NONE

hi Error            guifg=NONE        guibg=NONE        gui=undercurl ctermfg=16       ctermbg=red         cterm=NONE     guisp=#FF6C60 " undercurl color
hi ErrorMsg         guifg=white       guibg=#FF6C60     gui=BOLD      ctermfg=16       ctermbg=red         cterm=NONE
hi WarningMsg       guifg=white       guibg=#FF6C60     gui=BOLD      ctermfg=16       ctermbg=red         cterm=NONE
hi SpellBad       guifg=white       guibg=#FF6C60     gui=BOLD      ctermfg=16       ctermbg=160         cterm=NONE

" ir_black doesn't highlight operators for some reason
hi Operator        guifg=#6699CC     guibg=NONE        gui=NONE      ctermfg=lightblue   ctermbg=NONE        cterm=NONE

highlight DiffAdd term=reverse cterm=bold ctermbg=lightgreen ctermfg=16
highlight DiffChange term=reverse cterm=bold ctermbg=lightblue ctermfg=16
highlight DiffText term=reverse cterm=bold ctermbg=lightgray ctermfg=16
highlight DiffDelete term=reverse cterm=bold ctermbg=lightred ctermfg=16

highlight PmenuSel ctermfg=16 ctermbg=156



================================================
FILE: .vim/colors/hipster.vim
================================================
" --- hipster ---
" Author: Conner McDaniel (connermcd.com)
if version > 580
   hi clear
   if exists("syntax_on")
      syntax reset
   endif
endif

let g:colors_name = "hipster"
set t_Co=256
set background=dark

" Vim >= 7.0 specific colors
if version >= 700
hi CursorLine     guifg=NONE      guibg=#32322f   guisp=NONE      gui=NONE   ctermfg=NONE   ctermbg=236    cterm=NONE
hi CursorLineNr   guifg=#8a8a8a   guibg=#32322f   guisp=NONE      gui=NONE   ctermfg=245    ctermbg=236    cterm=NONE
hi MatchParen     guifg=#eae788   guibg=#857b6f   guisp=NONE      gui=bold   ctermfg=228    ctermbg=101    cterm=bold
hi PMenu          guifg=#dddddd   guibg=#423d35   guisp=#423d35   gui=NONE   ctermfg=253    ctermbg=238    cterm=NONE
hi PMenuSbar      guifg=NONE      guibg=#848688   guisp=#848688   gui=NONE   ctermfg=NONE   ctermbg=102    cterm=NONE
hi PMenuSel       guifg=#ffd700   guibg=#706070   guisp=#706070   gui=bold   ctermfg=220    ctermbg=242    cterm=bold
hi PMenuThumb     guifg=NONE      guibg=#a4a5a8   guisp=#a4a5a8   gui=NONE   ctermfg=NONE   ctermbg=248    cterm=NONE
endif

" General colors
hi Normal         guifg=#f9f8ff   guibg=#000000   guisp=NONE      gui=NONE   ctermfg=15     ctermbg=NONE   cterm=NONE
hi Cursor         guifg=NONE      guibg=#cd6f5c   guisp=#cd6f5c   gui=NONE   ctermfg=NONE   ctermbg=173    cterm=NONE
hi Visual         guifg=#c3c6ca   guibg=#554d4b   guisp=NONE      gui=NONE   ctermfg=251    ctermbg=239    cterm=NONE
hi Visualnos      guifg=#c3c6ca   guibg=#303030   guisp=NONE      gui=NONE   ctermfg=251    ctermbg=236    cterm=NONE
hi Search         guifg=#000000   guibg=#8dabcd   guisp=#8dabcd   gui=NONE   ctermfg=NONE   ctermbg=110    cterm=NONE
hi Folded         guifg=#857b6f   guibg=#000000   guisp=NONE      gui=NONE   ctermfg=241    ctermbg=233    cterm=NONE
hi StatusLineNC   guifg=NONE      guibg=#262626   guisp=#262626   gui=NONE   ctermfg=NONE   ctermbg=235    cterm=NONE
hi VertSplit      guifg=#444444   guibg=#444444   guisp=NONE      gui=NONE   ctermfg=238    ctermbg=238    cterm=NONE
" hi StatusLineNC   guifg=#857b6f   guibg=#444444   guisp=NONE      gui=NONE   ctermfg=241    ctermbg=238    cterm=NONE
hi LineNr         guifg=#595959   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=240    ctermbg=NONE   cterm=NONE
hi SpecialKey     guifg=#87beeb   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=117    ctermbg=NONE   cterm=NONE
hi WarningMsg     guifg=#bd4848   guibg=#f9f8ff   guisp=#f9f8ff   gui=bold   ctermfg=131    ctermbg=15     cterm=bold
hi ErrorMsg       guifg=#bd5353   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=131    ctermbg=NONE   cterm=NONE
hi MoreMsg        guifg=#ffff00   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=11     ctermbg=NONE   cterm=NONE

" Diff highlighting
hi DiffAdd        guifg=NONE      guibg=#301430   guisp=#3c664e   gui=NONE   ctermfg=NONE   ctermbg=236    cterm=NONE
hi DiffDelete     guifg=#ad3838   guibg=#301430   guisp=#301430   gui=NONE   ctermfg=131    ctermbg=236    cterm=NONE
hi DiffChange     guifg=NONE      guibg=#7e8c2d   guisp=#331833   gui=NONE   ctermfg=NONE   ctermbg=238    cterm=NONE

" Syntax highlighting
hi Keyword        guifg=#d6d69a   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=186    ctermbg=NONE   cterm=NONE
hi Function       guifg=#bf9b76   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=137    ctermbg=NONE   cterm=NONE
hi Constant       guifg=#44807d   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=66     ctermbg=NONE   cterm=NONE
hi Number         guifg=#386175   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=66     ctermbg=NONE   cterm=NONE
hi PreProc        guifg=#ad5234   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=131    ctermbg=NONE   cterm=NONE
hi Statement      guifg=#418db3   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=67     ctermbg=NONE   cterm=NONE
hi Identifier     guifg=#5f875f   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=65     ctermbg=NONE   cterm=NONE
hi Type           guifg=#babaa2   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=144    ctermbg=NONE   cterm=NONE
hi Special        guifg=#7a490d   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=3      ctermbg=NONE   cterm=NONE
hi String         guifg=#7e8c2d   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=100    ctermbg=NONE   cterm=NONE
hi Comment        guifg=#576157   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=241    ctermbg=NONE   cterm=NONE
hi Todo           guifg=#a1481e   guibg=NONE      guisp=NONE      gui=NONE   ctermfg=130    ctermbg=NONE   cterm=NONE

" Linking
hi! link          FoldColumn      Folded
hi! link          CursorColumn    CursorLine
hi! link          Search          CursorLine
hi! link          NonText         LineNr
hi! link          DiffText        DiffChange
hi! link          SpellBad        ErrorMsg
hi! link          SpellCap        ErrorMsg
hi! link          Error           ErrorMsg
hi! link          Question        MoreMsg
hi! link          htmlBold        Special
hi! link          htmlItalic      Number
hi! link          Title           Function

" Unhighlighted:
" CursorIM
" CursorColumn
" DiffText
" Directory
" FoldColumn
" IncSearch
" Menu
" ModeMsg
" MoreMsg
" NonText
" PmenuSbar
" PmenuThumb
" Question
" Scrollbar
" SignColumn
" SpellBad
" SpellLocal
" SpellRare
" TabLine
" TabLineFill
" TabLineSel
" Tooltip
" User1
" User9
" WildMenu
" Links

" vim: ts=3:sw=3:et


================================================
FILE: .vim/colors/ir_black.vim
================================================
" ir_black color scheme
" More at: http://blog.infinitered.com/entries/show/8


" ********************************************************************************
" Standard colors used in all ir_black themes:
" Note, x:x:x are RGB values
"
"  normal: #f6f3e8
" 
"  string: #A8FF60  168:255:96                   
"    string inner (punc, code, etc): #00A0A0  0:160:160
"  number: #FF73FD  255:115:253                 
"  comments: #7C7C7C  124:124:124
"  keywords: #96CBFE  150:203:254             
"  operators: white
"  class: #FFFFB6  255:255:182
"  method declaration name: #FFD2A7  255:210:167
"  regular expression: #E9C062  233:192:98
"    regexp alternate: #FF8000  255:128:0
"    regexp alternate 2: #B18A3D  177:138:61
"  variable: #C6C5FE  198:197:254
"  
" Misc colors:
"  red color (used for whatever): #FF6C60   255:108:96 
"     light red: #FFB6B0   255:182:176
"
"  brown: #E18964  good for special
"
"  lightpurpleish: #FFCCFF
" 
" Interface colors:
"  background color: black
"  cursor (where underscore is used): #FFA560  255:165:96
"  cursor (where block is used): white
"  visual selection: #1D1E2C  
"  current line: #151515  21:21:21
"  search selection: #07281C  7:40:28
"  line number: #535353  61:61:61


" ********************************************************************************
" The following are the preferred 16 colors for your terminal
"           Colors      Bright Colors
" Black     #4E4E4E     #7C7C7C
" Red       #FF6C60     #FFB6B0
" Green     #A8FF60     #CEFFAB
" Yellow    #FFFFB6     #FFFFCB
" Blue      #96CBFE     #FFFFCB
" Magenta   #FF73FD     #FF9CFE
" Cyan      #C6C5FE     #DFDFFE
" White     #EEEEEE     #FFFFFF


" ********************************************************************************
set background=dark
hi clear

if exists("syntax_on")
  syntax reset
endif

let colors_name = "ir_black"


"hi Example         guifg=NONE        guibg=NONE        gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE

" General colors
hi Normal           guifg=#f6f3e8     guibg=black       gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE
hi NonText          guifg=#070707     guibg=black       gui=NONE      ctermfg=black       ctermbg=NONE        cterm=NONE

hi Cursor           guifg=black       guibg=white       gui=NONE      ctermfg=black       ctermbg=white       cterm=reverse
hi LineNr           guifg=#535353     guibg=black       gui=NONE      ctermfg=darkgray    ctermbg=NONE        cterm=NONE

hi VertSplit        guifg=#202020     guibg=#202020     gui=NONE      ctermfg=darkgray    ctermbg=darkgray    cterm=NONE
hi StatusLine       guifg=#CCCCCC     guibg=#202020     gui=italic    ctermfg=white       ctermbg=darkgray    cterm=NONE
hi StatusLineNC     guifg=black       guibg=#202020     gui=NONE      ctermfg=blue        ctermbg=darkgray    cterm=NONE  

hi Folded           guifg=#a0a8b0     guibg=#384048     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE
hi Title            guifg=#4FBDE6     guibg=NONE        gui=bold      ctermfg=lightblue   ctermbg=NONE        cterm=NONE
hi Visual           guifg=NONE        guibg=#262D51     gui=NONE      ctermfg=NONE        ctermbg=darkgray    cterm=NONE

hi SpecialKey       guifg=#808080     guibg=NONE        gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE

hi WildMenu         guifg=green       guibg=yellow      gui=NONE      ctermfg=black       ctermbg=yellow      cterm=NONE
hi PmenuSbar        guifg=black       guibg=white       gui=NONE      ctermfg=black       ctermbg=white       cterm=NONE
"hi Ignore           guifg=gray        guibg=black       gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE

hi Error            guifg=NONE        guibg=NONE        gui=undercurl ctermfg=white       ctermbg=red         cterm=NONE     guisp=#FF6C60 " undercurl color
hi ErrorMsg         guifg=white       guibg=#FF6C60     gui=BOLD      ctermfg=white       ctermbg=red         cterm=NONE
hi WarningMsg       guifg=white       guibg=#FF6C60     gui=BOLD      ctermfg=white       ctermbg=red         cterm=NONE

" Message displayed in lower left, such as --INSERT--
hi ModeMsg          guifg=black       guibg=#C6C5FE     gui=BOLD      ctermfg=black       ctermbg=cyan        cterm=BOLD

if version >= 700 " Vim 7.x specific colors
  hi CursorLine     guifg=NONE        guibg=#121212     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=BOLD
  hi CursorColumn   guifg=NONE        guibg=#121212     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=BOLD
  hi MatchParen     guifg=#f6f3e8     guibg=#857b6f     gui=BOLD      ctermfg=white       ctermbg=darkgray    cterm=NONE
  hi Pmenu          guifg=#f6f3e8     guibg=#444444     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE
  hi PmenuSel       guifg=#000000     guibg=#cae682     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE
  hi Search         guifg=NONE        guibg=NONE        gui=underline ctermfg=NONE        ctermbg=NONE        cterm=underline
endif

" Syntax highlighting
hi Comment          guifg=#535353     guibg=NONE        gui=NONE      ctermfg=240         ctermbg=NONE        cterm=NONE
hi String           guifg=#A8FF60     guibg=NONE        gui=NONE      ctermfg=green       ctermbg=NONE        cterm=NONE
hi Number           guifg=#A54A87     guibg=NONE        gui=NONE      ctermfg=magenta     ctermbg=NONE        cterm=NONE

hi Keyword          guifg=#96CBFE     guibg=NONE        gui=NONE      ctermfg=blue        ctermbg=NONE        cterm=NONE
hi PreProc          guifg=#96CBFE     guibg=NONE        gui=NONE      ctermfg=blue        ctermbg=NONE        cterm=NONE
hi Conditional      guifg=#6699CC     guibg=NONE        gui=NONE      ctermfg=blue        ctermbg=NONE        cterm=NONE  " if else end

hi Todo             guifg=#8f8f8f     guibg=NONE        gui=NONE      ctermfg=red         ctermbg=NONE        cterm=NONE
hi Constant         guifg=#99CC99     guibg=NONE        gui=NONE      ctermfg=cyan        ctermbg=NONE        cterm=NONE

hi Identifier       guifg=#C60C5F     guibg=NONE        gui=NONE      ctermfg=cyan        ctermbg=NONE        cterm=NONE
hi Function         guifg=#FFD2A7     guibg=NONE        gui=NONE      ctermfg=brown       ctermbg=NONE        cterm=NONE
hi Type             guifg=#FFFFB6     guibg=NONE        gui=NONE      ctermfg=yellow      ctermbg=NONE        cterm=NONE
hi Statement        guifg=#6699CC     guibg=NONE        gui=NONE      ctermfg=lightblue   ctermbg=NONE        cterm=NONE

hi Special          guifg=#E18964     guibg=NONE        gui=NONE      ctermfg=gray        ctermbg=NONE        cterm=NONE
hi Delimiter        guifg=#00A0A0     guibg=NONE        gui=NONE      ctermfg=cyan        ctermbg=NONE        cterm=NONE
hi Operator         guifg=white       guibg=NONE        gui=NONE      ctermfg=white       ctermbg=NONE        cterm=NONE

hi link Character       Constant
hi link Boolean         Constant
hi link Float           Number
hi link Repeat          Statement
hi link Label           Statement
hi link Exception       Statement
hi link Include         PreProc
hi link Define          PreProc
hi link Macro           PreProc
hi link PreCondit       PreProc
hi link StorageClass    Type
hi link Structure       Type
hi link Typedef         Type
hi link Tag             Special
hi link SpecialChar     Special
hi link SpecialComment  Special
hi link Debug           Special


" Special for Ruby
hi rubyRegexp                  guifg=#B18A3D      guibg=NONE      gui=NONE      ctermfg=brown          ctermbg=NONE      cterm=NONE
hi rubyRegexpDelimiter         guifg=#FF8000      guibg=NONE      gui=NONE      ctermfg=brown          ctermbg=NONE      cterm=NONE
hi rubyEscape                  guifg=white        guibg=NONE      gui=NONE      ctermfg=cyan           ctermbg=NONE      cterm=NONE
hi rubyInterpolationDelimiter  guifg=#00A0A0      guibg=NONE      gui=NONE      ctermfg=blue           ctermbg=NONE      cterm=NONE
hi rubyControl                 guifg=#6699CC      guibg=NONE      gui=NONE      ctermfg=blue           ctermbg=NONE      cterm=NONE  "and break, etc
"hi rubyGlobalVariable          guifg=#FFCCFF      guibg=NONE      gui=NONE      ctermfg=lightblue      ctermbg=NONE      cterm=NONE  "yield
hi rubyStringDelimiter         guifg=#336633      guibg=NONE      gui=NONE      ctermfg=lightgreen     ctermbg=NONE      cterm=NONE
"rubyInclude
"rubySharpBang
"rubyAccess
"rubyPredefinedVariable
"rubyBoolean
"rubyClassVariable
"rubyBeginEnd
"rubyRepeatModifier
"hi link rubyArrayDelimiter    Special  " [ , , ]
"rubyCurlyBlock  { , , }

hi link rubyClass             Keyword 
hi link rubyModule            Keyword 
hi link rubyKeyword           Keyword 
hi link rubyOperator          Operator
hi link rubyIdentifier        Identifier
hi link rubyInstanceVariable  Identifier
hi link rubyGlobalVariable    Identifier
hi link rubyClassVariable     Identifier
hi link rubyConstant          Type  


" Special for Java
" hi link javaClassDecl    Type
hi link javaScopeDecl         Identifier 
hi link javaCommentTitle      javaDocSeeTag 
hi link javaDocTags           javaDocSeeTag 
hi link javaDocParam          javaDocSeeTag 
hi link javaDocSeeTagParam    javaDocSeeTag 

hi javaDocSeeTag              guifg=#CCCCCC     guibg=NONE        gui=NONE      ctermfg=darkgray    ctermbg=NONE        cterm=NONE
hi javaDocSeeTag              guifg=#CCCCCC     guibg=NONE        gui=NONE      ctermfg=darkgray    ctermbg=NONE        cterm=NONE
"hi javaClassDecl              guifg=#CCFFCC     guibg=NONE        gui=NONE      ctermfg=white       ctermbg=NONE        cterm=NONE


" Special for XML
hi link xmlTag          Keyword 
hi link xmlTagName      Conditional 
hi link xmlEndTag       Identifier 


" Special for HTML
hi link htmlTag         Keyword 
hi link htmlTagName     Conditional 
hi link htmlEndTag      Identifier 
hi link htmlBold        Constant
hi link htmlItalic      PreProc


" Special for Javascript
hi link javaScriptNumber      Number 


" Special for Python
"hi  link pythonEscape         Keyword      


" Special for CSharp
hi  link csXmlTag             Keyword      


================================================
FILE: .vim/colors/railscasts.vim
================================================
" Vim color scheme
"
" Name:         railscasts.vim
" Maintainer:   Nick Moffitt <nick@zork.net>
" Last Change:  01 Mar 2008
" License:      WTFPL <http://sam.zoy.org/wtfpl/>
" Version:      2.1
"
" This theme is based on Josh O'Rourke's Vim clone of the railscast
" textmate theme.  The key thing I have done here is supply 256-color
" terminal equivalents for as many of the colors as possible, and fixed
" up some of the funny behaviors for editing e-mails and such.
"
" To use for gvim:
" 1: install this file as ~/.vim/colors/railscasts.vim
" 2: put "colorscheme railscasts" in your .gvimrc
"
" If you are using Ubuntu, you can get the benefit of this in your
" terminals using ordinary vim by taking the following steps:
"
" 1: sudo apt-get install ncurses-term
" 2: put the following in your .vimrc
"     if $COLORTERM == 'gnome-terminal'
"         set term=gnome-256color
"         colorscheme railscasts
"     else
"         colorscheme default
"     endif
" 3: if you wish to use this with screen, add the following to your .screenrc:
"     attrcolor b ".I"
"     termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
"     defbce "on"
"     term screen-256color-bce

set background=dark
hi clear
if exists("syntax_on")
  syntax reset
endif

let g:colors_name = "railscasts"

hi link htmlTag                     xmlTag
hi link htmlTagName                 xmlTagName
hi link htmlEndTag                  xmlEndTag

highlight Normal                    guifg=#E6E1DC guibg=#111111 
highlight Cursor                    guifg=#000000 ctermfg=0 guibg=#FFFFFF ctermbg=15	
highlight CursorLine                guibg=#000000 ctermbg=233 cterm=NONE

highlight Comment                   guifg=#BC9458 ctermfg=180 gui=italic
highlight Constant                  guifg=#6D9CBE ctermfg=73
highlight Define                    guifg=#CC7833 ctermfg=173
highlight Error                     guifg=#FFC66D ctermfg=221 guibg=#990000 ctermbg=88
highlight Function                  guifg=#FFC66D ctermfg=221 gui=NONE cterm=NONE
highlight Identifier                guifg=#6D9CBE ctermfg=73 gui=NONE cterm=NONE
highlight Include                   guifg=#CC7833 ctermfg=173 gui=NONE cterm=NONE
highlight PreCondit                 guifg=#CC7833 ctermfg=173 gui=NONE cterm=NONE
highlight Keyword                   guifg=#CC7833 ctermfg=173 cterm=NONE
highlight LineNr                    guifg=#2B2B2B ctermfg=159 guibg=#C0C0FF
highlight Number                    guifg=#A5C261 ctermfg=107
highlight PreProc                   guifg=#E6E1DC ctermfg=103
highlight Search                    guifg=NONE ctermfg=NONE guibg=#2b2b2b ctermbg=235 gui=italic cterm=underline
highlight Statement                 guifg=#CC7833 ctermfg=173 gui=NONE cterm=NONE
highlight String                    guifg=#A5C261 ctermfg=107
highlight Title                     guifg=#FFFFFF ctermfg=15
highlight Type                      guifg=#DA4939 ctermfg=167 gui=NONE cterm=NONE
highlight Visual                    guibg=#5A647E ctermbg=60

highlight DiffAdd                   guifg=#E6E1DC ctermfg=7 guibg=#519F50 ctermbg=71
highlight DiffDelete                guifg=#E6E1DC ctermfg=7 guibg=#660000 ctermbg=52
highlight Special                   guifg=#DA4939 ctermfg=167 

highlight pythonBuiltin             guifg=#6D9CBE ctermfg=73 gui=NONE cterm=NONE
highlight rubyBlockParameter        guifg=#FFFFFF ctermfg=15
highlight rubyClass                 guifg=#FFFFFF ctermfg=15
highlight rubyConstant              guifg=#DA4939 ctermfg=167
highlight rubyInstanceVariable      guifg=#D0D0FF ctermfg=189
highlight rubyInterpolation         guifg=#519F50 ctermfg=107
highlight rubyLocalVariableOrMethod guifg=#D0D0FF ctermfg=189
highlight rubyPredefinedConstant    guifg=#DA4939 ctermfg=167
highlight rubyPseudoVariable        guifg=#FFC66D ctermfg=221
highlight rubyStringDelimiter       guifg=#A5C261 ctermfg=143

highlight xmlTag                    guifg=#E8BF6A ctermfg=179
highlight xmlTagName                guifg=#E8BF6A ctermfg=179
highlight xmlEndTag                 guifg=#E8BF6A ctermfg=179

highlight mailSubject               guifg=#A5C261 ctermfg=107
highlight mailHeaderKey             guifg=#FFC66D ctermfg=221
highlight mailEmail                 guifg=#A5C261 ctermfg=107 gui=italic cterm=underline

highlight SpellBad                  guifg=#D70000 ctermfg=160 ctermbg=NONE cterm=underline
highlight SpellRare                 guifg=#D75F87 ctermfg=168 guibg=NONE ctermbg=NONE gui=underline cterm=underline
highlight SpellCap                  guifg=#D0D0FF ctermfg=189 guibg=NONE ctermbg=NONE gui=underline cterm=underline
highlight MatchParen                guifg=#FFFFFF ctermfg=15 guibg=#005f5f ctermbg=23


================================================
FILE: .vim/colors/slate2.vim
================================================
"%% SiSU Vim color file
" Slate Maintainer: Ralph Amissah <ralph@amissah.com>
" (originally looked at desert Hans Fugal <hans@fugal.net> http://hans.fugal.net/vim/colors/desert.vim (2003/05/06)
:set background=dark
:highlight clear
if version > 580
 hi clear
 if exists("syntax_on")
 syntax reset
 endif
endif
let colors_name = "slate2"
if version >= 700 " Vim 7.x specific colors
  hi CursorLine     guifg=NONE        guibg=#121212     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=BOLD
  hi CursorColumn   guifg=NONE        guibg=#121212     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=BOLD
  hi MatchParen     guifg=#f6f3e8     guibg=#857b6f     gui=BOLD      ctermfg=white       ctermbg=darkgray    cterm=NONE
  hi Pmenu          guifg=#f6f3e8     guibg=#444444     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE
  hi PmenuSel       guifg=#000000     guibg=#cae682     gui=NONE      ctermfg=NONE        ctermbg=NONE        cterm=NONE
  hi Search         guifg=NONE        guibg=NONE        gui=underline ctermfg=NONE        ctermbg=NONE        cterm=underline
endif
:hi Normal guifg=White guibg=Black
:hi Cursor guibg=khaki guifg=slategrey
:hi VertSplit guibg=#c2bfa5 guifg=grey40 gui=none cterm=reverse
:hi Folded guibg=black guifg=grey40 ctermfg=grey ctermbg=darkgrey
:hi FoldColumn guibg=black guifg=grey20 ctermfg=4 ctermbg=7
:hi IncSearch guifg=green guibg=black cterm=none ctermfg=yellow ctermbg=green
:hi ModeMsg guifg=goldenrod cterm=none ctermfg=brown
:hi MoreMsg guifg=SeaGreen ctermfg=darkgreen
:hi NonText guifg=grey20 guibg=Black cterm=bold ctermfg=blue
:hi Question guifg=springgreen ctermfg=green
:hi Search guibg=peru guifg=wheat cterm=none ctermfg=grey ctermbg=blue
:hi SpecialKey guifg=grey20 ctermfg=darkgreen
:hi StatusLine guibg=#c2bfa5 guifg=black gui=none cterm=bold,reverse
:hi StatusLineNC guibg=#c2bfa5 guifg=grey40 gui=none cterm=reverse
:hi Title guifg=gold gui=bold cterm=bold ctermfg=yellow
:hi Statement guifg=CornflowerBlue ctermfg=lightblue
:hi Visual gui=none guifg=khaki guibg=olivedrab cterm=reverse
:hi WarningMsg guifg=salmon ctermfg=1
:hi String guifg=SkyBlue ctermfg=darkcyan
:hi Comment term=bold ctermfg=11 guifg=grey40
:hi Constant guifg=#ffa0a0 ctermfg=brown
:hi Special guifg=darkkhaki ctermfg=brown
:hi Identifier guifg=salmon ctermfg=red
:hi Include guifg=red ctermfg=red
:hi PreProc guifg=yellowgreen ctermfg=red
:hi Operator guifg=Red ctermfg=Red
:hi Define guifg=gold gui=bold ctermfg=yellow
:hi Type guifg=CornflowerBlue ctermfg=2
:hi Function guifg=navajowhite ctermfg=brown
:hi Structure guifg=green ctermfg=green
:hi LineNr guifg=grey50 ctermfg=3
:hi Ignore guifg=grey40 cterm=bold ctermfg=7
:hi Todo guifg=orangered guibg=yellow2
:hi Directory ctermfg=darkcyan
:hi ErrorMsg cterm=bold guifg=White guibg=Red cterm=bold ctermfg=7 ctermbg=1
:hi VisualNOS cterm=bold,underline
:hi WildMenu ctermfg=0 ctermbg=2
:hi DiffAdd ctermbg=4
:hi DiffChange ctermbg=5
:hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
:hi DiffText cterm=bold ctermbg=1
:hi Underlined cterm=underline ctermfg=5
:hi Error guifg=White guibg=Red cterm=bold ctermfg=7 ctermbg=1
:hi SpellErrors guifg=White guibg=Red cterm=bold ctermfg=7 ctermbg=1


================================================
FILE: .vim/colors/vibrantink.vim
================================================
" Vim color scheme
"
" Name:         vibrantink.vim
" Maintainer:   Jo Vermeulen <jo.vermeulen@gmail.com> 
" Last Change:  5 Mar 2009 
" License:      public domain
" Version:      1.3
"
" This scheme should work in the GUI and in xterm's 256 color mode. It
" won't work in 8/16 color terminals.
"
" I based it on John Lam's initial Vibrant Ink port to Vim [1]. Thanks
" to a great tutorial [2], I was able to convert it to xterm 256 color
" mode. And of course, credits go to Justin Palmer for creating the
" original Vibrant Ink TextMate color scheme [3].
"
" [1] http://www.iunknown.com/articles/2006/09/04/vim-can-save-your-hands-too
" [2] http://frexx.de/xterm-256-notes/
" [3] http://encytemedia.com/blog/articles/2006/01/03/textmate-vibrant-ink-theme-and-prototype-bundle

set background=dark
hi clear
if exists("syntax_on")
   syntax reset
endif

let g:colors_name = "vibrantink"

if has("gui_running")
    highlight Normal guifg=White   guibg=Black
    highlight Cursor guifg=Black   guibg=Yellow
    highlight Keyword guifg=#FF6600
    highlight Define guifg=#FF6600
    highlight Comment guifg=#9933CC
    highlight Type guifg=White gui=NONE
    highlight rubySymbol guifg=#339999 gui=NONE
    highlight Identifier guifg=White gui=NONE
    highlight rubyStringDelimiter guifg=#66FF00
    highlight rubyInterpolation guifg=White
    highlight rubyPseudoVariable guifg=#339999
    highlight Constant guifg=#FFEE98
    highlight Function guifg=#FFCC00 gui=NONE
    highlight Include guifg=#FFCC00 gui=NONE
    highlight Statement guifg=#FF6600 gui=NONE
    highlight String guifg=#66FF00
    highlight Search guibg=White
    highlight CursorLine guibg=#323300
else
    set t_Co=256
    highlight Normal ctermfg=White ctermbg=Black 
    highlight Cursor ctermfg=Black ctermbg=Yellow 
    highlight Keyword ctermfg=202 
    highlight Define ctermfg=202 
    highlight Comment ctermfg=98
    highlight Type ctermfg=White 
    highlight rubySymbol ctermfg=66 
    highlight Identifier ctermfg=White 
    highlight rubyStringDelimiter ctermfg=82 
    highlight rubyInterpolation ctermfg=White 
    highlight rubyPseudoVariable ctermfg=66 
    highlight Constant ctermfg=228 
    highlight Function ctermfg=220 
    highlight Include ctermfg=220 
    highlight Statement ctermfg=202
    highlight String ctermfg=82 
    highlight Search ctermbg=White 
    highlight CursorLine cterm=NONE ctermbg=235
endif


================================================
FILE: .vim/colors/vividchalk.vim
================================================
" Vim color scheme
" Name:         vividchalk.vim
" Author:       Tim Pope <vimNOSPAM@tpope.info>
" Version:      2.0
" GetLatestVimScripts: 1891 1 :AutoInstall: vividchalk.vim

" Based on the Vibrank Ink theme for TextMate
" Distributable under the same terms as Vim itself (see :help license)

if has("gui_running")
    set background=dark
endif
hi clear
if exists("syntax_on")
   syntax reset
endif

let colors_name = "vividchalk"

" First two functions adapted from inkpot.vim

" map a urxvt cube number to an xterm-256 cube number
fun! s:M(a)
    return strpart("0245", a:a, 1) + 0
endfun

" map a urxvt colour to an xterm-256 colour
fun! s:X(a)
    if &t_Co == 88
        return a:a
    else
        if a:a == 8
            return 237
        elseif a:a < 16
            return a:a
        elseif a:a > 79
            return 232 + (3 * (a:a - 80))
        else
            let l:b = a:a - 16
            let l:x = l:b % 4
            let l:y = (l:b / 4) % 4
            let l:z = (l:b / 16)
            return 16 + s:M(l:x) + (6 * s:M(l:y)) + (36 * s:M(l:z))
        endif
    endif
endfun

function! E2T(a)
    return s:X(a:a)
endfunction

function! s:choose(mediocre,good)
    if &t_Co != 88 && &t_Co != 256
        return a:mediocre
    else
        return s:X(a:good)
    endif
endfunction

function! s:hifg(group,guifg,first,second,...)
    if a:0 && &t_Co == 256
        let ctermfg = a:1
    else
        let ctermfg = s:choose(a:first,a:second)
    endif
    exe "highlight ".a:group." guifg=".a:guifg." ctermfg=".ctermfg
endfunction

function! s:hibg(group,guibg,first,second)
    let ctermbg = s:choose(a:first,a:second)
    exe "highlight ".a:group." guibg=".a:guibg." ctermbg=".ctermbg
endfunction

hi link railsMethod         PreProc
hi link rubyDefine          Keyword
hi link rubySymbol          Constant
hi link rubyAccess          rubyMethod
hi link rubyAttribute       rubyMethod
hi link rubyEval            rubyMethod
hi link rubyException       rubyMethod
hi link rubyInclude         rubyMethod
hi link rubyStringDelimiter rubyString
hi link rubyRegexp          Regexp
hi link rubyRegexpDelimiter rubyRegexp
"hi link rubyConstant        Variable
"hi link rubyGlobalVariable  Variable
"hi link rubyClassVariable   Variable
"hi link rubyInstanceVariable Variable
hi link javascriptRegexpString  Regexp
hi link javascriptNumber        Number
hi link javascriptNull          Constant
highlight link diffAdded        String
highlight link diffRemoved      Statement
highlight link diffLine         PreProc
highlight link diffSubname      Comment

call s:hifg("Normal","#EEEEEE","White",87)
if &background == "light" || has("gui_running")
    hi Normal guibg=Black ctermbg=Black
else
    hi Normal guibg=Black ctermbg=NONE
endif
highlight StatusLine    guifg=Black   guibg=#aabbee gui=bold ctermfg=Black ctermbg=White  cterm=bold
highlight StatusLineNC  guifg=#444444 guibg=#aaaaaa gui=none ctermfg=Black ctermbg=Grey   cterm=none
"if &t_Co == 256
    "highlight StatusLine ctermbg=117
"else
    "highlight StatusLine ctermbg=43
"endif

highlight Ignore        ctermfg=Black
highlight WildMenu      guifg=Black   guibg=#ffff00 gui=bold ctermfg=Black ctermbg=Yellow cterm=bold
highlight Cursor        guifg=Black guibg=White ctermfg=Black ctermbg=White
highlight CursorLine    guibg=#333333 guifg=NONE
highlight CursorColumn  guibg=#333333 guifg=NONE
highlight NonText       guifg=#404040 ctermfg=8
highlight SpecialKey    guifg=#404040 ctermfg=8
highlight Directory     none
high link Directory     Identifier
highlight ErrorMsg      guibg=Red ctermbg=DarkRed guifg=NONE ctermfg=NONE
highlight Search        guifg=NONE ctermfg=NONE gui=none cterm=none
call s:hibg("Search"    ,"#555555","DarkBlue",81)
highlight IncSearch     guifg=White guibg=Black ctermfg=White ctermbg=Black
highlight MoreMsg       guifg=#00AA00 ctermfg=Green
highlight LineNr        guifg=#DDEEFF ctermfg=White
call s:hibg("LineNr"    ,"#222222","DarkBlue",80)
highlight Question      none
high link Question      MoreMsg
highlight Title         guifg=Magenta ctermfg=Magenta
highlight VisualNOS     gui=none cterm=none
call s:hibg("Visual"    ,"#555577","LightBlue",83)
call s:hibg("VisualNOS" ,"#444444","DarkBlue",81)
call s:hibg("MatchParen","#1100AA","DarkBlue",18)
highlight WarningMsg    guifg=Red ctermfg=Red
highlight Error         ctermbg=DarkRed
highlight SpellBad      ctermbg=DarkRed
" FIXME: Comments
highlight SpellRare     ctermbg=DarkMagenta
highlight SpellCap      ctermbg=DarkBlue
highlight SpellLocal    ctermbg=DarkCyan

call s:hibg("Folded"    ,"#110077","DarkBlue",17)
call s:hifg("Folded"    ,"#aaddee","LightCyan",63)
highlight FoldColumn    none
high link FoldColumn    Folded
highlight DiffAdd       ctermbg=4 guibg=DarkBlue
highlight DiffChange    ctermbg=5 guibg=DarkMagenta
highlight DiffDelete    ctermfg=12 ctermbg=6 gui=bold guifg=Blue guibg=DarkCyan
highlight DiffText      ctermbg=DarkRed
highlight DiffText      cterm=bold ctermbg=9 gui=bold guibg=Red

highlight Pmenu         guifg=White ctermfg=White gui=bold cterm=bold
highlight PmenuSel      guifg=White ctermfg=White gui=bold cterm=bold
call s:hibg("Pmenu"     ,"#000099","Blue",18)
call s:hibg("PmenuSel"  ,"#5555ff","DarkCyan",39)
highlight PmenuSbar     guibg=Grey ctermbg=Grey
highlight PmenuThumb    guibg=White ctermbg=White
highlight TabLine       gui=underline cterm=underline
call s:hifg("TabLine"   ,"#bbbbbb","LightGrey",85)
call s:hibg("TabLine"   ,"#333333","DarkGrey",80)
highlight TabLineSel    guifg=White guibg=Black ctermfg=White ctermbg=Black
highlight TabLineFill   gui=underline cterm=underline
call s:hifg("TabLineFill","#bbbbbb","LightGrey",85)
call s:hibg("TabLineFill","#808080","Grey",83)

hi Type gui=none
hi Statement gui=none
if !has("gui_mac")
    " Mac GUI degrades italics to ugly underlining.
    hi Comment gui=italic
    hi railsUserClass  gui=italic
    hi railsUserMethod gui=italic
endif
hi Identifier cterm=none
" Commented numbers at the end are *old* 256 color values
"highlight PreProc       guifg=#EDF8F9
call s:hifg("Comment"        ,"#9933CC","DarkMagenta",34) " 92
" 26 instead?
call s:hifg("Constant"       ,"#339999","DarkCyan",21) " 30
call s:hifg("rubyNumber"     ,"#CCFF33","Yellow",60) " 190
call s:hifg("String"         ,"#66FF00","LightGreen",44,82) " 82
call s:hifg("Identifier"     ,"#FFCC00","Yellow",72) " 220
call s:hifg("Statement"      ,"#FF6600","Brown",68) " 202
call s:hifg("PreProc"        ,"#AAFFFF","LightCyan",47) " 213
call s:hifg("railsUserMethod","#AACCFF","LightCyan",27)
call s:hifg("Type"           ,"#AAAA77","Grey",57) " 101
call s:hifg("railsUserClass" ,"#AAAAAA","Grey",7) " 101
call s:hifg("Special"        ,"#33AA00","DarkGreen",24) " 7
call s:hifg("Regexp"         ,"#44B4CC","DarkCyan",21) " 74
call s:hifg("rubyMethod"     ,"#DDE93D","Yellow",77) " 191
"highlight railsMethod   guifg=#EE1122 ctermfg=1


================================================
FILE: .vim/colors/wombatty.vim
================================================
" Vim color file
" Original Maintainer:  Lars H. Nielsen (dengmao@gmail.com)
" Modified By: Conner McDaniel (connermcd@gmail.com)
" Last Change: 2012-09-29
"
" Modified version of wombat for 256-color terminals by
"   David Liang (bmdavll@gmail.com)
" based on version by
"   Danila Bespalov (danila.bespalov@gmail.com)

set background=dark

if version > 580
	hi clear
	if exists("syntax_on")
		syntax reset
	endif
endif

let colors_name = "wombatty"


" Vim >= 7.0 specific colors
if version >= 700
hi CursorLine					ctermbg=236		cterm=none						guibg=#32322f
hi CursorLineNr	ctermfg=245		ctermbg=236		cterm=none		guifg=#8a8a8a	guibg=#32322f
hi MatchParen	ctermfg=228		ctermbg=101		cterm=bold		guifg=#eae788	guibg=#857b6f	gui=bold
hi Pmenu		ctermfg=230		ctermbg=238						guifg=#ffffd7	guibg=#444444
" hi PmenuSel		ctermfg=232		ctermbg=192						guifg=#080808	guibg=#cae982
hi PmenuSel		ctermfg=0		ctermbg=11						guifg=#080808	guibg=#cae982
endif

" General colors
hi Normal		ctermfg=252						cterm=none		guifg=#e3e0d7	guibg=#000000	gui=none
hi Cursor		ctermfg=000		ctermbg=228		cterm=none		guifg=#000000	guibg=#eae788	gui=none
hi Visual		ctermfg=251		ctermbg=239		cterm=none		guifg=#c3c6ca	guibg=#554d4b	gui=none
hi VisualNOS	ctermfg=251		ctermbg=236		cterm=none		guifg=#c3c6ca	guibg=#303030	gui=none
hi Search		ctermfg=177		ctermbg=241		cterm=none		guifg=#d787ff	guibg=#636066	gui=none
hi Folded		ctermfg=241		ctermbg=233		cterm=none		guifg=#857b6f	guibg=#000000	gui=none
hi Title		ctermfg=024						cterm=bold		guifg=#1077A5					gui=bold
hi StatusLine	ctermfg=230		ctermbg=238		cterm=none		guifg=#ffffd7	guibg=#444444	gui=italic
hi VertSplit	ctermfg=238		ctermbg=238		cterm=none		guifg=#444444	guibg=#444444	gui=none
hi StatusLineNC	ctermfg=241		ctermbg=238		cterm=none		guifg=#857b6f	guibg=#444444	gui=none
hi LineNr		ctermfg=241						cterm=none		guifg=#857b6f	guibg=#000000	gui=none
hi SpecialKey	ctermfg=241						cterm=none		guifg=#626262	guibg=#000000	gui=none
hi WarningMsg	ctermfg=203										guifg=#ff5f55
hi ErrorMsg		ctermfg=88		ctermbg=9		cterm=bold		guifg=#ff2026	guibg=#3a3a3a	gui=bold
hi MoreMsg		ctermfg=11						cterm=none

" Diff highlighting
hi DiffAdd						ctermbg=22										guibg=#008000
hi DiffDelete	ctermfg=15		ctermbg=88		cterm=none		guifg=#ffffff	guibg=#800000	gui=none
hi DiffChange					ctermbg=235										guibg=#808080

" Syntax Highlighting
hi Keyword		ctermfg=111		cterm=none		guifg=#88b8f6	gui=none
hi Statement	ctermfg=111		cterm=none		guifg=#88b8f6	gui=none
hi Constant		ctermfg=173		cterm=none		guifg=#e5786d	gui=none
hi Number		ctermfg=173		cterm=none		guifg=#e5786d	gui=none
hi PreProc		ctermfg=173		cterm=none		guifg=#e5786d	gui=none
hi Function		ctermfg=192		cterm=none		guifg=#cae982	gui=none
hi Identifier	ctermfg=166		cterm=none		guifg=#FF9900	gui=none
hi Type			ctermfg=186		cterm=none		guifg=#d4d987	gui=none
hi Special		ctermfg=229		cterm=none		guifg=#eadead	gui=none
hi String		ctermfg=113		cterm=none		guifg=#95e454	gui=italic
hi Comment		ctermfg=246		cterm=none		guifg=#9c998e	gui=italic
hi Todo			ctermfg=101		ctermbg=0		cterm=none		guifg=#857b6f	gui=italic
hi htmlBold		ctermfg=106						guifg=#90C107
hi htmlItalic	ctermfg=073						guifg=#72CCD8

" Linking
hi! link FoldColumn		Folded
hi! link CursorColumn	CursorLine
hi! link NonText		LineNr
hi! link DiffText		DiffChange
hi! link SpellBad		ErrorMsg
hi! link Error			ErrorMsg
hi! link Question		MoreMsg

" Unhighlighted:
" CursorIM
" CursorColumn
" DiffText
" Directory
" FoldColumn
" IncSearch
" Menu
" ModeMsg
" MoreMsg
" NonText
" PmenuSbar
" PmenuThumb
" Question
" Scrollbar
" SignColumn
" SpellBad
" SpellCap
" SpellLocal
" SpellRare
" TabLine
" TabLineFill
" TabLineSel
" Tooltip
" User1
" User9
" WildMenu
" Links
"
" vim: ts=4:sw=4:noet


================================================
FILE: .vim/colors/xoria256.vim
================================================
" Vim color file
"
" Name:       xoria256.vim
" Version:    1.5
" Maintainer:	Dmitriy Y. Zotikov (xio) <xio@ungrund.org>
"
" Should work in recent 256 color terminals.  88-color terms like urxvt are
" NOT supported.
"
" Don't forget to install 'ncurses-term' and set TERM to xterm-256color or
" similar value.
"
" Color numbers (0-255) see:
" http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
"
" For a specific filetype highlighting rules issue :syntax list when a file of
" that type is opened.

" Initialization {{{
if &t_Co != 256 && ! has("gui_running")
  echomsg ""
  echomsg "err: please use GUI or a 256-color terminal (so that t_Co=256 could be set)"
  echomsg ""
  finish
endif

set background=dark

hi clear

if exists("syntax_on")
  syntax reset
endif

let colors_name = "xoria256"
"}}}
" Colours {{{1
"" General {{{2
hi Normal       ctermfg=252 guifg=#d0d0d0 ctermbg=234 guibg=#1c1c1c cterm=none gui=none
hi Cursor                                 ctermbg=214 guibg=#ffaf00
hi CursorColumn                           ctermbg=238 guibg=#444444
hi CursorLine                             ctermbg=237 guibg=#3a3a3a cterm=none gui=none
hi Error        ctermfg=15  guifg=#ffffff ctermbg=1   guibg=#800000
hi ErrorMsg     ctermfg=15  guifg=#ffffff ctermbg=1   guibg=#800000
hi FoldColumn   ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212
hi Folded       ctermfg=255 guifg=#eeeeee ctermbg=60  guibg=#5f5f87
hi IncSearch    ctermfg=0   guifg=#000000 ctermbg=223 guibg=#ffdfaf cterm=none gui=none
hi LineNr       ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212
hi MatchParen   ctermfg=188 guifg=#dfdfdf ctermbg=68  guibg=#5f87df cterm=bold gui=bold
" TODO
" hi MoreMsg
hi NonText      ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 cterm=bold gui=bold
hi Pmenu        ctermfg=0   guifg=#000000 ctermbg=250 guibg=#bcbcbc
hi PmenuSel     ctermfg=255 guifg=#eeeeee ctermbg=243 guibg=#767676
hi PmenuSbar                              ctermbg=252 guibg=#d0d0d0
hi PmenuThumb   ctermfg=243 guifg=#767676
hi Search       ctermfg=0   guifg=#000000 ctermbg=149 guibg=#afdf5f
hi SignColumn   ctermfg=248 guifg=#a8a8a8
hi SpecialKey   ctermfg=77  guifg=#5fdf5f
hi SpellBad     ctermfg=160 guifg=fg      ctermbg=bg                cterm=underline               guisp=#df0000
hi SpellCap     ctermfg=189 guifg=#dfdfff ctermbg=bg  guibg=bg      cterm=underline gui=underline
hi SpellRare    ctermfg=168 guifg=#df5f87 ctermbg=bg  guibg=bg      cterm=underline gui=underline
hi SpellLocal   ctermfg=98  guifg=#875fdf ctermbg=bg  guibg=bg      cterm=underline gui=underline
hi StatusLine   ctermfg=15  guifg=#ffffff ctermbg=239 guibg=#4e4e4e cterm=bold gui=bold
hi StatusLineNC ctermfg=249 guifg=#b2b2b2 ctermbg=237 guibg=#3a3a3a cterm=none gui=none
hi TabLine      ctermfg=fg  guifg=fg      ctermbg=242 guibg=#666666 cterm=none gui=none
hi TabLineFill  ctermfg=fg  guifg=fg      ctermbg=237 guibg=#3a3a3a cterm=none gui=none
" FIXME
hi Title        ctermfg=225 guifg=#ffdfff
hi Todo         ctermfg=0   guifg=#000000 ctermbg=184 guibg=#dfdf00
hi Underlined   ctermfg=39  guifg=#00afff                           cterm=underline gui=underline
hi VertSplit    ctermfg=237 guifg=#3a3a3a ctermbg=237 guibg=#3a3a3a cterm=none gui=none
" hi VIsualNOS    ctermfg=24  guifg=#005f87 ctermbg=153 guibg=#afdfff cterm=none gui=none
" hi Visual       ctermfg=24  guifg=#005f87 ctermbg=153 guibg=#afdfff
hi Visual       ctermfg=255 guifg=#eeeeee ctermbg=96  guibg=#875f87
" hi Visual       ctermfg=255 guifg=#eeeeee ctermbg=24  guibg=#005f87
hi VisualNOS    ctermfg=255 guifg=#eeeeee ctermbg=60  guibg=#5f5f87
hi WildMenu     ctermfg=0   guifg=#000000 ctermbg=150 guibg=#afdf87 cterm=bold gui=bold

"" Syntax highlighting {{{2
hi Comment      ctermfg=244 guifg=#808080
hi Constant     ctermfg=229 guifg=#ffffaf
hi Identifier   ctermfg=182 guifg=#dfafdf                           cterm=none
hi Ignore       ctermfg=238 guifg=#444444
hi Number       ctermfg=180 guifg=#dfaf87
hi PreProc      ctermfg=150 guifg=#afdf87
hi Special      ctermfg=174 guifg=#df8787
hi Statement    ctermfg=110 guifg=#87afdf                           cterm=none gui=none
hi Type         ctermfg=146 guifg=#afafdf                           cterm=none gui=none

"" Special {{{2
""" .diff {{{3
hi diffAdded    ctermfg=150 guifg=#afdf87
hi diffRemoved  ctermfg=174 guifg=#df8787
""" vimdiff {{{3
hi diffAdd      ctermfg=bg  guifg=bg      ctermbg=151 guibg=#afdfaf
"hi diffDelete   ctermfg=bg  guifg=bg      ctermbg=186 guibg=#dfdf87 cterm=none gui=none
hi diffDelete   ctermfg=bg  guifg=bg      ctermbg=246 guibg=#949494 cterm=none gui=none
hi diffChange   ctermfg=bg  guifg=bg      ctermbg=181 guibg=#dfafaf
hi diffText     ctermfg=bg  guifg=bg      ctermbg=174 guibg=#df8787 cterm=none gui=none
""" HTML {{{3
" hi htmlTag      ctermfg=146  guifg=#afafdf
" hi htmlEndTag   ctermfg=146  guifg=#afafdf
hi htmlTag      ctermfg=244
hi htmlEndTag   ctermfg=244
hi htmlArg	ctermfg=182  guifg=#dfafdf
hi htmlValue	ctermfg=187  guifg=#dfdfaf
hi htmlTitle	ctermfg=254  ctermbg=95
" hi htmlArg	ctermfg=146
" hi htmlTagName	ctermfg=146
" hi htmlString	ctermfg=187
""" django {{{3
hi djangoVarBlock ctermfg=180
hi djangoTagBlock ctermfg=150
hi djangoStatement ctermfg=146
hi djangoFilter ctermfg=174
""" python {{{3
hi pythonExceptions ctermfg=174
""" NERDTree {{{3
hi Directory      ctermfg=110  guifg=#87afdf
hi treeCWD        ctermfg=180  guifg=#dfaf87
hi treeClosable   ctermfg=174  guifg=#df8787
hi treeOpenable   ctermfg=150  guifg=#afdf87
hi treePart       ctermfg=244  guifg=#808080
hi treeDirSlash   ctermfg=244  guifg=#808080
hi treeLink       ctermfg=182  guifg=#dfafdf

""" VimDebug {{{3
" FIXME
" you may want to set SignColumn highlight in your .vimrc
" :help sign
" :help SignColumn

" hi currentLine term=reverse cterm=reverse gui=reverse
" hi breakPoint  term=NONE    cterm=NONE    gui=NONE
" hi empty       term=NONE    cterm=NONE    gui=NONE

" sign define currentLine linehl=currentLine
" sign define breakPoint  linehl=breakPoint  text=>>
" sign define both        linehl=currentLine text=>>
" sign define empty       linehl=empty



================================================
FILE: .vim/spell/eng.utf-8.add
================================================
nonmaleficence
capacitated
timeline
mitochondrial
hydrolytic
turgor
ultrastructural
polysomes
fibrillar
intercellular
microvilli
blebbing
glycolysis
48335
Aarskog
Aase
AastromReplicell
abacavir
abacterial
abarelix
abarognosis
abarthrosis
abarticular
abarticulation
abasia
abatacept
Abbe
Abbokinase
abciximab
abdominale
abdominalis
abdominis
abdominocardiac
abdominocentesis
abdominocystic
abdominogenital
abdominohysterectomy
abdominohysterotomy
abdominojugular
abdominopelvic
abdominoperineal
abdominoplasties
abdominoplasty
abdominoposterior
abdominoscopy
abdominoscrotal
abdominothoracic
abdominovaginal
abdominovesical
abducens
abducent
abductory
abductovalgus
abductus
Abelcet
Abelson
abembryonic
Abenol
aberrans
aberratio
AbESTT
abetalipoproteinemia
ABGs
abietic
Abilify
AbioCor
Abiological
Abiomed
abiosis
abiotic
Abiotrophia
abiotrophy
Abitrexate
ablactation
Ablatherm
ablepharia
ablepharon
ablepsia
abluent
ablutomania
abor
aboral
abortifacient
abortifacients
abortus
abrachia
abrachius
abrasio
Abraxane
Abreva
Abrikossoff
abrin
abruptio
Abscession
abscessus
abscisic
abscopal
Absidia
Absinthism
absinthium
absorbancy
Absorbase
absorbefacient
Absorbine
absorptiometer
absorptiometry
absorptivity
abst
abtropfung
abulia
abulomania
acadesine
acalcicosis
acalculia
acalculous
Acambis
acamprosate
acampsia
acantha
acanthaceous
acanthamebiasis
acanthamoeba
acanthocyte
acanthocytes
acanthocytosis
acantholysis
acantholytic
acanthoma
acanthomas
acanthomata
acanthosis
acanthotic
acapnia
acapnic
acapsular
acarbia
acarbose
acardia
acardiacus
acardius
acari
acariasis
acaricide
acarid
acaridiasis
Acarina
acarine
acarines
acarinosis
acarodermatitis
acaroid
acarologist
acarology
Acarophobia
Acarus
acaryote
acatalasemia
acatalasia
acatamathesia
acataphasia
acathexia
acathexis
acathisia
acaudal
acaudate
Accel
accessorius
acch
AcChR
accid
Accolate
accommodometer
accreta
Accu
accuDEXA
Accufix
AccuLase
Acculink
AccuMeter
AccuNeb
Accupep
Accupril
AccuProbe
Accurbron
Accuretic
Accuron
AccuSite
Accutane
Accutech
Accuzyme
acebutolol
acecainide
acedapsone
Acel
acellular
acelomate
acenaphthenes
acenesthesia
acenocoumarin
acenocoumarol
acentric
Aceon
acephalic
acephalobrachia
acephalocardia
acephalocardius
acephalochiria
acephalocyst
acephalogasteria
acephalopodia
acephalostomia
acephalothoracia
acephalus
Acephen
acepromazine
acervuline
acervulus
Acesulfame
acetabula
acetabular
acetabulare
Acetabularia
acetabulectomy
acetabuli
acetabuloplasty
acetabulum
Acetadote
acetal
acetals
acetamide
acetamides
acetamidine
acetamidobenzoate
acetaminophenol
acetanilides
acetarsone
Acetasol
acetazolamide
acetenyl
Acetest
acetin
aceto
acetoacetate
acetoacetates
acetoacetic
acetoacetyl
Acetobacter
acetohexamide
acetohydroxamic
acetoin
acetol
acetolactate
acetolysis
acetonemia
acetonide
acetonitrile
acetonitriles
acetonuria
acetophenazine
acetophenetidide
acetophenone
acetophenones
acetosella
acetoxyacetylaminofl
acetrizoate
acetrizoic
aceturate
aceturic
acetylaminobenzene
acetylaminofluorene
acetylaniline
acetylase
acetylation
acetylator
acetylcarnitine
acetylcholinesterase
acetylco
acetylcysteine
acetyldigitoxin
acetyldigitoxins
acetyldigoxins
acetylesterase
acetylgalactosamine
acetylgalactosaminid
acetylglucosamine
acetylglucosaminidas
acetylglucosaminyl
acetylglutamate
acetylhydrolase
acetylide
acetylmethadol
acetylmuramate
acetylmuramoyl
acetylmuramyl
acetylneuraminate
acetylneuraminic
acetylprocainamide
acetylserotonin
acetylthiocholine
acetyltransferase
acetyltransferases
ACh
achalasia
Achatina
AChE
acheilia
acheiria
acheiropodia
Achillea
Achillis
achillobursitis
achillodynia
achillorrhaphy
achillotenotomy
achiral
achiria
achlorhydria
achlorhydric
achloropsia
Acholeplasma
Acholeplasmataceae
acholia
acholic
acholuria
acholuric
achondrogenesis
achondroplasia
achondroplastic
Achor
Achorion
AChR
achrestic
achromacyte
achromasia
achromat
achromate
Achromatiaceae
achromatism
Achromatium
achromatolysis
achromatophil
achromatopia
achromatopsia
achromatosis
achromatous
achromaturia
achromia
Achromobacter
achromophil
Achromycin
achylia
achylous
achymia
aciculum
Acidaminococcus
acidaminuria
acidemia
acidifiable
acidimeter
acidimetry
acidocyte
acidominimus
acidotic
Acidulin
acidum
aciduria
aciduric
Acier
aciesis
Acilac
acinar
acinarization
acinesia
acinetic
Acinetobacter
acini
acinic
aciniform
acinitis
acinose
acinous
acinus
Aciphex
acitretin
ackee
Ackrad
acladiosis
Acladium
aclasia
aclasis
aclastic
acleistocardia
Aclovate
acneform
acnegenic
acneiform
acnitis
acoelomate
acology
Acolysis
Acon
aconitate
aconitic
aconitine
acorea
acoria
acormus
acou
acouesthesia
acousmatamnesia
acoustogram
Acova
acquisita
acquisitum
acral
acrania
acranial
acranius
Acremonium
acridine
acridines
acriflavine
acrisorcin
acritical
acrivastine
acro
acroagnosis
acroanesthesia
acroarthritis
acroblast
acrobrachycephaly
acrocentric
acrocephalia
acrocephalic
acrocephalopolysynda
acrocephalosyndactyl
acrocephaly
acrochordon
acrocontracture
acrocyanosis
acrodermatitis
acrodermatosis
acrodolichomelia
acrodynia
acrodynic
acrodysplasia
acroesthesia
acrognosis
acrohypothermy
acrokeratoses
acrokeratosis
acrolein
acromegaly
acromi
acromial
acromiale
acromicria
acromio
acromioclavicular
acromiohumeral
acromion
acromionectomy
acromioplasty
acromiothoracic
acromphalus
acromyotonia
acroneurosis
acronine
acropachy
acropachyderma
acroparalysis
acroparesthesia
acropathology
acropathy
acroposthitis
acropurpura
acroscleroderma
acrosclerosis
acrosin
acrosomal
acrosome
acrosomes
acrotic
acrotism
acrotrophoneurosis
AcryDerm
acrylaldehyde
acrylamide
acrylamides
acrylate
acrylates
acrylonitrile
AcrySof
Acta
ACTe
Actelion
Acthar
Acthrel
Acticin
Acticoat
Acticon
Acticort
Actidil
Actidose
Actigall
actihemyl
Actihist
Actimmune
actin
Actinex
actinin
actinobacilloses
actinobacillosis
Actinobacillus
actinochemistry
actinodermatitides
actinodermatitis
actinoides
Actinomadura
actinomyces
Actinomycetaceae
Actinomycetales
actinomycete
Actinomycetes
actinomycetic
actinomycin
actinomycoma
actinomycoses
actinomycosis
actinomycotic
actinotherapy
Actiprep
Actiq
Actis
Actisite
Activase
activatable
Activella
Activent
Acto
Actol
actometer
actomyosin
Actonel
Actoplus
Actos
Actron
Actros
Acufex
acufilopressure
AcuFix
Acular
AcuMatch
Acumed
acuminata
acuminatum
AcuNav
acus
Acuson
acusticae
acusticum
acusticus
acuta
AcuTect
acutorsion
AcuTrainer
acutum
acyanoblepsia
acyanopsia
acyanotic
acyesis
acyl
Acylanid
acylase
acylated
acylation
Acylcarnitines
acylfulvene
acylglycerol
acylmutase
acylneuraminate
acylphosphatase
acylsphingosine
acyltransferase
acyltransferases
acystia
acystinervia
Aczone
adactylia
adactylous
adactyly
Adagen
Adalat
adalimumab
adamantane
adamantinoma
adamantoblast
adamantoblastoma
adami
Adamkiewicz
adamsite
adansonian
adapalene
Adapin
adaptational
Adaptic
adaptometer
adatom
Adavite
adaxial
Adcon
adde
Adderall
Addiquip
addisonian
Addisonism
addit
adducent
adductocavus
adductovarus
adductus
AddVent
Adeflor
adefovir
ADEKs
adelomorphous
adenalgia
adenase
adenasthenia
adendric
adendritic
adenectomy
adenectopia
adenia
adeniform
adenization
Adeno
adenoacanthoma
adenoameloblastoma
adenoblast
adenocarcinoma
adenocarcinomas
adenocarcinomatous
Adenocard
adenocele
adenocellulitis
adenochondroma
adenocyst
adenocystic
adenocystoma
adenocyte
adenodynia
adenoepithelioma
adenofibroma
adenofibromas
adenogenous
adenography
adenohypophyseal
adenohypophysectomy
adenohypophysis
adenoides
adenolipoma
adenolipomatosis
adenology
adenolymphitis
adenolymphocele
adenolymphoma
adenolymphomas
adenomalacia
adenomatoid
adenomatosis
adenomatous
adenomere
adenomyofibroma
adenomyoma
Adenomyomata
adenomyomatosis
adenomyomatous
adenomyometritis
adenomyosarcoma
adenomyosis
adenopathies
adenopathy
adenosarcoma
Adenoscan
adenosis
adenosyl
adenosylmethionine
adenosyltransferase
adenotome
adenotomy
adenotonsillectomy
adenotonsillitis
Adenoviridae
Adentri
adenyl
adenylate
adenylic
adenylyl
adermia
adermogenesis
Adhatoda
adherens
adhesin
adhesio
adhesiolysis
adhesiotomy
adHF
adhuc
adiadochocinesia
adiadochokinesia
adiadochokinesis
adiaphoria
adiaspiromycosis
adiaspore
adip
adipate
adipectomy
Adipex
adipic
adipocele
adipocellular
adipocere
adipocyte
adipocytes
adipofibroma
adipogenic
adipogenous
adipokinesis
adipokinetic
adipokinin
adiponecrosis
adiponectin
adiposa
adiposis
adipositis
adiposogenital
adiposum
adiposus
adjuvants
ADLs
admedial
Adnasal
adnate
adneural
adnexa
adnexal
adnexogenesis
Adol
adolescentis
Adolor
adoral
Adoxa
Adphen
adren
adrenalectomized
adrenalectomy
adrenalinemia
adrenalinuria
adrenalism
adrenalitis
adrenalopathy
adrenarche
adrenergics
adrenic
adrenoceptive
adrenoceptor
adrenochrome
adrenocortical
adrenocorticohyperpl
adrenocorticoid
adrenocorticomimetic
adrenocorticosteroid
adrenocorticotrophic
adrenocorticotrophin
adrenocorticotropic
adrenocorticotropin
adrenodoxin
adrenogenital
adrenoglomerulotropi
adrenoleukodystrophy
adrenolytic
adrenomegaly
adrenomimetic
adrenone
adrenopathy
adrenoreceptor
adrenotoxin
Adria
Adriamycin
Adrucil
Adson
adsorbability
adsorbable
adsorbate
Adsorbocarpine
adsunt
adtorsion
adultorum
Advair
Advantim
Advantz
Advera
Advicor
adynamia
adynamic
adyston
Aebli
Aedes
aegypti
aegyptius
aeriform
Aeroaid
Aerobacter
Aerobid
aerobiosis
aerocele
AeroChamber
Aerococcus
aerocolpos
aerodermectasia
aerodontalgia
AeroDose
aeroemphysema
aerogel
aerogen
aerogenes
aerogenesis
aerogenic
Aerolate
Aerolizer
Aerolone
Aeromonas
aeropathy
aeroperitonia
aerophagia
aerophilic
aerophilous
aeropiesotherapy
aeroplethysmograph
Aeroseb
aerosinusitis
Aerosolization
Aerospan
Aerosporin
aerotaxis
aerotitis
aerotolerant
Aerotrol
aerotympanal
AeroView
AeroZoin
aeruginosa
AERx
Aescula
Aesculap
Aesculus
Aeterno
aethiops
Afaxin
afeb
afebrile
afferentia
Afferon
affusion
Affymetrix
afibrinogenemia
aflatoxicosis
aflatoxin
Aflexa
africana
africanum
Afrinol
Aftate
afterhearing
afterload
afterpains
afterperception
afterpotentials
aftersensation
afunctional
AFx
agalactia
agalactiae
agalsidase
agametic
agammaglobulinemia
aganglionic
aganglionosis
agard
agaricin
Agaro
agastric
Agenerase
agenesia
agenitalism
agenosomi
agenosomia
agens
ageusia
ageusic
agger
agglomerans
agglutinability
agglutinable
agglutinator
agglutinogen
agglutinogenic
agglutinophilic
Aggrastat
Aggrenox
Agiltrac
Agita
agitans
aglaucopsia
aglossia
aglossostomia
aglutition
aglycemia
aglycone
aglycosuric
agminated
agnathia
agnathus
agneas
agnogenic
agnosia
agomphiasis
agonad
agonadal
agonadism
agonal
agoniadin
Agoral
Agouron
agrammatism
agranular
agranulocyte
agranulocytic
agranulocytosis
agranuloplastic
agraphesthesia
agraphia
agraphic
Agrelin
agrimony
Agrobacterium
agrum
Agrylin
Agyiophobia
agyria
Ahlstrom?s
Ahumada
Aicardi
aichmophobia
Aidant
ailuromania
ailurophobia
ainhum
Airbrator
Aircast
Aire
Airet
Aitken
ajmaline
akamushi
akari
akaryocyte
akaryote
akatamathesia
akathisia
AKBeta
Akerlund
akido
akinesia
akinesis
akinesthesia
akinetic
Akineton
Aklomide
Akne
Akoline
Akorn
AKPro
Akrinol
AKTob
alacrima
alactasia
alae
alaeque
Alagille
Alajouanine
alalia
Alamast
Alamine
alanine
alaninemia
alanyl
alar
Alaris
AlaSTAT
alastrim
alatrofloxacin
Alavert
Alazide
Albalon
Albamycin
Albay
albendazole
Albenza
albicans
albicantes
albidum
albiduria
albidus
albinoidism
albinuria
albizia
albopictus
albuginea
Albuminar
albuminocholia
albuminocytologic
albuminoid
albuminolysin
albuminoptysis
albuminous
albuminuretic
albuminuria
albuminuric
Albunex
albuterol
Albutropin
Alcaine
alcalifaciens
Alcaligenes
alcapton
alcaptonuria
Alcare
Alchemilla
alcian
alclometasone
alcogel
alcoh
alcoholate
alcoholysis
Alcomed
alcosol
Aldactazide
Aldactone
Aldara
Aldecount
aldehyde
aldehydic
aldesleukin
aldicarb
Aldoclor
aldohexose
aldol
aldolase
Aldomet
aldopentose
Aldoril
aldose
aldosterone
aldosteronism
aldosteronoma
Aldurazyme
alecithal
alefacept
Alegre
alemtuzumab
alendronate
Alergol
Alersule
Alesse
alethine
Aletris
aleukemia
aleukemic
aleukia
aleukocytic
aleukocytosis
Alexa
alexic
Alexion
Alexithymia
aleydigism
alfa
Alfacon
Alfenta
alfentanil
Alferon
alfimeprase
alfuzosin
algefacient
algera
algesia
algesic
algesimetry
algia
algicide
AlgiDERM
Algin
alginic
AlgiSite
alglucerase
alglucosidase
algo
algodystrophy
algogenic
algology
algometer
algophobia
algor
Alicaforsen
alicyclic
alienia
alienism
AliMed
alimentotherapy
Alimentum
Aliminase
Alimta
alinasal
Alinia
aliskiren
alisphenoid
AlitraQ
alitretinoin
alium
Alka
alkalemia
alkalescence
alkalescent
alkalimetry
alkalinization
alkalinuria
alkalitherapy
alkalizer
Alkaloida
alkalometry
alkalotic
alkamine
alkane
alkanes
alkannin
alkapton
alkaptonuria
alkaptonuric
alkarau
alkavervir
alkene
Alkeran
alkoxide
alkoxy
Alkphase
alkylamine
alkylate
alkylated
alkylating
alkylbenzene
alkyne
allachesthesia
allantiasis
allantochorion
allantoic
allantoid
allantoidoangiopagou
allantoin
allantoinase
allantoinuria
allantois
Alldress
allee
Allegra
allelism
allelomorphic
allelotaxis
Aller
Allerest
Allerfrim
Allerfrin
Allergan
allergid
Allergin
Allergine
allergization
allergize
Allerphed
Allerprop
Allervax
allesthesia
allethrin
Allevyn
allium
allo
alloantibodies
allobar
allobarbital
allocheiria
allochroism
allochromasia
AlloDerm
allodiploid
allodiploidy
allodynia
Alloerotic
alloeroticism
alloerotism
Allogen
allogeneic
allogenic
allogenicity
allografted
allografting
allografts
Alloimmune
alloimmunization
allolalia
Allomatrix
allomorphism
Allopathist
allopathy
allophanamide
allophore
alloplasia
alloplast
alloplastic
alloplasty
alloploid
alloploidy
allopolyploidy
allopsychic
allopurinol
allorhythmia
allosensitization
allosome
allosteric
allotherm
allotope
allotriogeustia
allotropism
allotype
allotypic
allotypy
alloxan
alloxuremia
alloxuria
alloxuric
allozyme
allulose
allyl
allylamine
allylamines
allylthiourea
Allyn
Alm
Almebex
Almora
almotriptan
alobar
alochia
Alocril
alogia
alogical
Aloka
Alomide
Alond
Alophen
Aloprim
Alora
alosetron
Aloxi
Alpers
Alphacaine
Alphaderm
Alphadrol
Alphagan
Alphalin
alphalytic
alphamimetic
Alphamul
Alphanate
AlphaNine
alphaprodine
Alpharma
Alphastar
Alphatec
Alphatrex
alphaviruses
Alport
Alport? s
alprazolam
alprostadil
Alprox
Alrex
alseroxylon
Alsoy
Alstrom
Altabax
Altace
Altaire
Altana
Altastaph
Alteon
alteplase
ALternaGEL
alternans
Alternaria
alternifolia
alternobaric
Althaea
Althin
Altmann
Altocor
alton
Altoprev
altretamine
Altropane
Aludrox
aluline
Alumadrine
Alumafoam
aluminate
aluminium
aluminosilicate
aluminosis
Alupent
Alurate
alvei
alveolares
alveolaris
alveolectomy
alveolingual
alveolitis
alveolocapillary
alveoloclasia
alveolodental
alveolonasal
alveoloplasty
alveolotomy
alveus
Alvi
alvimopan
alymphia
alymphocytosis
alymphoplasia
Alza
Alzhemed
amacrine
amalonaticus
aman
amantadine
Amaphen
Amarine
amastia
amastigote
amathophobia
amaurosis
amaurotic
Amazia
ambenonium
Ambenyl
Ambicor
ambiguus
ambilateral
ambilevous
ambiopia
ambisexual
AmBisome
ambivalency
amblyacousia
amblyaphia
amblygeustia
Amblyomma
amblyopia
amblyoscope
amboceptor
Ambodryl
ambon
ambrette
Ambrotose
Ambu
Amcill
amcinonide
amdinocillin
Amdray
amebae
amebiasis
amebicide
amebiform
amebocyte
ameboma
amebula
ameburia
amelanotic
amelification
ameloblast
ameloblastic
ameloblastoma
amelodentinal
amelus
Amenia
amenorrheal
amensalism
Amer
Amerge
Americaine
americanum
americanus
Amerigel
Amerscan
Amersham
ametria
ametrometer
ametropia
ametropic
Amevive
Amgenal
Amicar
amicrobic
amiculum
amidase
Amidate
amidations
amidine
amido
amifloxacin
amifostine
amikacin
Amikin
amiloride
amimia
Amin
aminacrine
aminate
aminating
amination
Aminess
Amini
aminoacetate
aminoacetic
aminoacidopathy
aminoacylase
aminoadipic
aminobenzene
aminobenzoate
aminobenzoic
aminobutyrate
aminobutyric
aminocaproic
aminoethanol
aminoethyl
Aminofen
aminoglutethimide
aminoglycoside
aminoglycosides
aminohexanoic
aminohippurate
aminohippuric
aminohydrolase
aminohydrolases
aminolevulinate
aminolevulinic
aminolysis
aminomethane
aminopeptidase
Aminophyllin
aminophylline
aminopterin
aminopyridine
aminosalicylate
aminosalicylic
Aminosol
Aminosyn
aminoterminal
aminothiazole
aminotransferase
aminotransferases
aminuria
amiodarone
Amipaque
amiprilose
Amitid
Amitiza
amitraz
Amitril
amitriptyline
amitrole
amlexanox
amlodipine
ammoaciduria
ammonemia
ammoniacal
ammoniemia
ammonification
ammonis
ammoniuria
ammonolysis
Ammons
Ammonul
amnalgesia
amnestic
Amnestrogen
amnii
amniocele
amniochorial
amniogenesis
amniography
amnioinfusion
amnionic
amnionitis
amniorrhea
amniorrhexis
amnioscope
amnioscopy
amniote
amniotome
amniotomy
amobarbital
Amocine
amodiaquine
amorphia
amorphic
amorphinism
amorphism
amorphus
amoxapine
Amoxil
Ampalex
amperometric
amperometry
Amphadase
Amphecloral
amphiarthroses
amphiarthrosis
Amphibia
amphicelous
amphicentric
Amphicol
Amphicrine
amphidiarthrodial
amphidiarthrosis
amphigonadism
amphiprotic
amphistome
amphitrichous
Amphocin
amphocyte
Amphojel
ampholyte
amphophil
amphophilic
amphoric
Amphotec
amphotericin
amphotericity
amphoterism
amphotony
ampicillin
Amplatz
AmpliChip
Amplicor
Ampligen
amprenavir
Amprolium
ampul
ampules
ampulla
ampullae
ampullar
ampullaris
ampullary
ampyrone
Amrex
amsacrine
Amsidyl
Amsler
amter
amusia
AmVaz
Amvisc
amyelia
amyelinic
amyelonic
amyelotrophy
amyelus
Amygdala
amygdalae
amygdalic
amygdalin
amygdaloid
amygdaloideum
amygdalolith
amylacea
amylene
amylin
Amylo
amylogenesis
amylogenic
Amyloglucosidase
amyloid
amyloidosis
amyloidosus
amyloidotic
amylolytic
amylopectinosis
amylorrhea
amylorrhexis
amylose
amylosuria
amyluria
amyoplasia
amyotrophia
amyotrophy
Amytal
amyxia
amyxorrhea
anabasine
anabiotic
anabolergy
anabolin
anabolite
anachoresis
anachoretic
anacidity
anaclisis
anaclitic
anacousia
anacrotic
anacrotism
anadipsia
anadrenalism
Anadrol
anaerobiosis
anaerobius
anaerogenic
anaerosis
Anafranil
anagen
anagrelide
anakatadidymus
anakinra
anakusis
analbuminemia
anales
analgetic
analgia
analgic
anallergic
Analpram
analysand
analyte
analytes
Anamine
anamnestic
anaphia
anaphoresis
anaphoria
anaphrodisia
anaphrodisiac
anaphylactin
anaphylactoid
anaphylatoxins
anaplasia
Anaplasma
Anaplasmataceae
anaplasmodastat
anaplasmosis
anaplastic
Anapolon
anapophysis
Anaprox
Anaptic
anarithmia
anarthria
anasarca
Anaspaz
anastalsis
anastaltic
anastole
anastomose
anastomosed
anastomoses
anastomosing
anastomosis
anastomotic
anastrozole
anate
anatomica
Anatrast
anatropia
anatropic
Anbesol
Ancef
ancestim
Anchorlok
anchylo
ancipital
Ancobon
anconad
anconagra
anconal
anconeal
anconeus
anconitis
ancrod
Ancure
ancylo
Ancylostoma
ancylostomiasis
Ancylostomidae
ancyroid
Andernach
Andersch
Andersson
Andoin
Andractim
Andral
Andro
androblastoma
Androderm
AndroGel
androgenesis
androgenetic
androgenicity
Androgyn
Andrology
Androlone
androphilic
androphilous
androphobia
Androsorb
androstane
androstanediol
androstanedione
androstene
androstenediol
androstenedione
androsterone
AndroTab
Androtest
Androvite
anectasis
Anectine
anemias
anemophobia
anencephali
anencephalic
anencephalus
anephric
Anergan
anergasia
anergastic
anergia
anergic
anergy
AnervaX
anerythroplasia
anerythroplastic
anerythropoiesis
anerythropsia
anes
Anesiva
Anestacon
anesthekinesia
anesthesimeter
anestrus
anethole
Anethum
anetoderma
aneuploid
aneuploidy
AneuRx
aneurysmal
aneurysmectomy
aneurysmoplasty
aneurysmorrhaphy
aneurysmotomy
Anexsia
AngeFlex
Angeion
Angeliq
Angelman
AngePass
angi
angiasthenia
angiectasia
angiectasis
angiectomy
angiectopia
angiitis
anginal
anginophobia
anginosa
anginose
anginosus
angio
angioblast
angioblastic
angioblastoma
angiocardiogram
angiocardiography
angiocardiokinetic
angiocardiopathy
angiocarditis
Angiocath
angiocatheter
angiochondroma
Angiocor
AngioDynamics
angiodysplasia
angioedema
angioendothelioma
angiofibroma
angiofollicular
angiogenic
angioglioma
angiographically
angiohemophilia
angiohyalinosis
angioid
angioimmunoblastic
AngioJet
angiokeratoma
Angiology
angiolupoid
angiolysis
angioma
AngioMARK
angiomas
angiomata
angiomatosis
angiomatous
Angiomax
angiomegaly
angiomyolipoma
angiomyoma
angiomyoneuroma
angiomyosarcoma
angiomyxoma
angioneurectomy
angioneuroma
angioneuromyoma
angioneuropathic
angioneuropathy
angioneurotic
angionoma
AngioOPTIC
angioparalysis
angioparesis
angiopathic
angiopathy
angioplastied
angiopoiesis
angiopoietic
angiopressure
AngioRad
angiorhigosis
angiorrhaphy
angiosarcoma
angiosarcomas
angiosclerosis
angiosclerotic
angioscope
angioscopy
angioscotoma
angioscotometry
angiospasm
angiospastic
Angiostatin
angiostaxis
angiostenosis
AngioStent
angiostrongyliasis
Angiostrongylus
angiostrophe
angiostrophy
angiotelectasis
angiotensin
angiotensinase
angiotensinogen
angiotitis
angiotome
angiotomy
angiotonic
angiotribe
angiotripsy
angiotrophic
Angiovist
angularis
angulation
anguli
angulus
angustifolia
anhedonia
anhedonic
anhidrosis
anhidrotic
anhydrase
anhydration
anhydremia
Anhydron
anhydrovinblastine
anianthinopsy
Anichkov
anicteric
anideus
anidrosis
anidulafungin
anileridine
anilide
anilides
anilinism
anilism
anility
anionotropy
aniridia
anisakiasis
Anisakis
aniseikonia
anisic
anisindione
anisochromatic
anisocoria
anisocytosis
anisodactylous
anisodactyly
anisogamete
anisogamy
anisognathous
anisokaryosis
anisomastia
anisomelia
anisometropia
anisometropic
anisopiesis
anisopoikilocytosis
anisospore
anisosthenic
anisotonic
anisotropine
anistreplase
Anisum
anisuria
ankyl
ankyloblepharon
ankylochilia
ankyloglossia
ankylopoietic
ankylopoietica
Ankylose
ankylosed
ankylosing
ankylosis
ankylotia
ankylotic
ankyrin
ankyroid
anlage
Annamycin
annectant
annectent
Annelida
Annexin
Annexins
anni
annua
annulare
annularis
annuloaortic
AnnuloFlex
annuloplasty
annulorrhaphy
annulotomy
annuum
anococcygeal
anocutaneous
anoderm
anodontia
anogenital
Anogesic
anoia
anolyte
anomalad
anomalopia
anomaloscope
anomer
anomia
anonima
Anonymae
anophthalmia
anophthalmos
anopia
anopla
anoplasty
anopsia
Anoquan
anorchia
anorchid
anorchism
anorectal
anorectocolonic
anorectoplasty
anorectum
anoretic
anorexiant
anorexigenic
Anorgasmia
Anorgasmy
anorthography
anorthopia
anorthoscope
anorthosis
anoscope
anoscopy
anosigmoidoscopic
anosigmoidoscopy
anosmia
anosmic
anosognosia
anospinal
anostosis
anotia
anotus
anovaginal
anovarism
anovesical
anovular
anovulation
anovulatory
anoxemia
anoxemic
Anoxomer
ansa
ansae
Ansaid
ansate
anserina
anserinus
Ansolysen
Anspach
Anspor
Antabuse
Antagon
Antagonate
antalgic
antarctica
Antares
antarthritic
antatrophic
antazoline
antea
antebrachia
antebrachial
antebrachii
antebrachium
antecubital
antecurvature
antefebrile
anteflexed
anteflexion
antegrade
Antegren
antemortem
Antepar
antepartal
antepartum
antephase
antepyretic
Antergan
anteriores
anteriorly
anterius
anteroapical
anteroclusion
anteroexternal
anterograde
anteroinferior
anterointernal
anterolateral
anterolaterally
anterolisthesis
anteromedial
anteromedian
anteroposterior
anteroseptal
anterosuperior
anteroventral
anteversion
anteverted
anthelical
anthelix
anthelminthic
anthelmintic
anthelmintics
anthelone
Anthemis
anthocyanin
anthophobia
anthracene
anthracis
anthracoid
anthraconecrosis
anthracosilicosis
anthracosis
anthracotic
anthracycline
anthracyclines
anthralin
anthranilate
anthranilic
anthraquinone
anthrone
Anthropoidea
anthroponotic
anthropophilic
anthropozoonosis
antiabortifacient
antiadrenergic
antiadrenergics
antiagglutinin
antiaggregant
antiallergic
antiamebic
antianaphylactin
antianaphylaxis
antiandrogen
antianemic
antianemics
antianginal
antianginals
antiantibody
antianxiety
antiarrhythmia
antiarrhythmic
antiarrhythmics
antiarthritic
antiasthmatic
antiasthmatics
Antiatherogenic
antibechic
antibiont
antiblennorrhagic
antibrachium
anticalculous
anticardiolipin
anticariogenic
anticarious
anticatalyst
anticheirotonus
anticholesteremic
anticholinergic
anticholinergics
anticholinesterase
anticlinal
anticoagulate
anticoagulated
anticoagulative
anticoagulin
anticodon
anticomplement
anticomplementary
anticonvulsant
Anticort
anticus
antidiabetic
antidiarrhea
antidiarrheal
antidiuretic
antidopaminergic
antidopaminergics
antidromic
antidysenteric
antieczematic
antiembolic
antiembolism
antiemetic
antiemetics
antiendotoxin
antiepithelial
antiestrogen
antifebrile
antifibrinolysin
antifibrinolytic
antifilarial
antiflatulent
antifolate
antifungals
antigalactic
antigenemia
antigenemic
antigenicity
Antigenics
antigliadin
antiglobulin
antiglomerular
antihelix
antihelmintic
antihemolysin
antihemophilic
antihemorrhagic
antihidrotic
antihormone
antihypercholesolemi
antihypercholesterol
antihyperlipoprotein
antihypertension
antihypertensives
antihypotensive
Antiinfective
antiinflammatory
antileishmanial
antileprotic
antileukocytic
antilewisite
antilipemic
antilipemics
Antilirium
antilithic
antilymphocyte
antilysin
antilysis
antilytic
antimalarial
antimalarials
antimere
antimesenteric
antimetabolite
antimetabolites
antimethemoglobinemi
antimetropia
antimicrobal
antimicrosomal
Antiminth
antimitochondrial
antimongolism
antimonic
antimonide
antimonyl
antimuscarinics
antimycin
antimycobacterial
antimycotic
antinarcotic
antinauseant
antineoplastic
antineoplaston
antinephritic
antineuralgic
antineuritic
antineutrophil
antineutrophilic
antinion
antiodontalgic
antiovulatory
antioxidative
Antiparallel
antiparasitic
antiparkinsonian
antipellagra
antiperiodic
antiperistalsis
antiperistaltic
antiphlogistics
antiphospholipid
antiplasmin
antiplastic
antiplatelet
antipolycythemic
antiport
antiprothrombin
antiprotozoal
antipruritic
antipruritics
antipsoriatic
antipsychotics
antipyrine
antipyrotic
antirachitic
antireceptor
antireflux
antiretrovirals
antirheumatic
antirheumatics
antirickettsial
antirobin
antiscabietic
antischistosomal
antiscorbutic
antiseborrheic
antisecretory
antiseizure
antisense
antishock
antisialagogue
antisialic
antisialogogic
antismooth
Antisoma
Antispas
antispastic
antispastics
antisperm
antistreptococcic
antistreptolysin
antisudoral
antisudorific
antisympathetic
antisyphilitic
antitachycardia
antithenar
antithrombin
antithrombotic
antithymocyte
antithyroglobulin
antithyroid
antitragus
antitrichomonal
antitrope
antitropic
antitrypanosomal
antitrypsin
antitubercular
antituberculin
antituberculous
antitumor
antitussive
antitussives
antivenom
Antivert
Antivirogram
antixerophthalmic
antixerotic
Antizol
antr
antra
antrectomy
Antrenyl
Antrin
antritis
antroatticotomy
antrocele
Antrocol
antronasal
antroscope
antroscopy
antrostomy
antrotomy
antrotympanic
antrotympanitis
antrum
Antrypol
Anturane
anuclear
Anucort
anular
anuli
anulus
anum
Anumed
anuresis
anuretic
anuria
anuric
Anusol
anxiolytic
anxiolytics
Anzemet
aort
aortalgia
aortica
aorticopulmonary
aorticorenal
aorticum
aortitis
aorto
aortobifemoral
aortocoronary
aortofemoral
aortogram
aortography
aortoiliac
aortopathy
aortoplasty
aortopulmonary
aortorenal
aortorrhaphy
aortosclerosis
aortotomies
aortotomy
aortoventriculoplast
aoth
apallesthesia
apancrea
apancreatic
aparalytic
Apatate
apathic
apathism
APCs
apellous
Aperient
aperistalsis
aperistaltic
Apert
apertognathia
apertura
apexcardiogram
Apexcardiography
apexograph
Apgar
Apha
aphagia
aphakia
aphakic
aphalangia
aphasiologist
aphasiology
aphasmid
aphemia
apheresis
aphonia
Aphrasia
Aphrodyne
aphrophilus
aphtha
aphthae
Aphthasol
aphthosis
aphthous
aphylactic
aphylaxis
apically
apicectomy
apicitis
apicoectomy
apicolysis
apicoposterior
Apidra
apiospermum
apiphobia
apis
Apium
aplacental
aplanatic
aplasia
aplastic
Apley
Apligraf
Aplisol
Aplitest
apneic
apneumia
apneusis
apneustic
apoatropine
apoB
apochromatic
apocrine
apodia
Apodized
Apodol
ApoE
apoenzyme
apoferritin
Apogen
Apokyn
apolipoprotein
apolipoproteins
Apomate
apomorphine
aponeurectomy
aponeurorrhaphy
aponeuroses
aponeurosis
aponeurositis
aponeurotic
aponeurotica
aponeurotomy
apophyseal
apophysis
apophysitis
apoplectiform
Apoplexia
apoprotein
aporepressor
apostasis
aposthia
apotripsis
Appelbaum
appendic
appendiceal
appendicectomy
appendicolith
appendicolithiasis
appendicolysis
appendicostomy
appendicular
appendolithiasis
appl
applanation
applanometer
approximal
approximator
apraclonidine
Apramycin
Aprax
apraxia
apraxic
aprepitant
Apresazide
Apresoline
aprobarbital
aproctia
Aprodine
aprosody
aprosopia
aprosopus
aprotic
aprotinin
apterous
Apthera
apticide
aptiganel
Aptivus
Aptosyn
aPTT
apyretic
apyrexia
apyrogenic
Aquacel
Aquachloral
Aquaderm
AquaFlow
aquagenic
AquaMEPHYTON
aquaphobia
Aquaphor
Aquaphyllin
Aquaporin
Aquasol
Aquatag
Aquatensen
aquatherapy
aqueductal
Aquilon
ara
arabin
arabinoside
arabinosyl
arabite
arabitol
araC
arachic
arachidic
Arachidonate
arachidonic
arachnephobia
Arachnida
arachnidism
arachnitis
arachno
arachnodactyly
arachnoid
arachnoiditis
Aralast
Aralen
aralkyl
Aramine
Aran
Aranelle
Aranesp
Arantius
araphia
Arava
arborescens
arborization
arborvirus
arboviral
arbovirus
ARBs
arbutamine
arbutin
Archangelica
arche
archeokinetic
archinephric
archinephron
archipallium
archwire
arciform
arcitumomab
Arcobee
Arcoxia
arctation
Arctium
Arctostaphylos
arcuata
arcuate
arcuation
arcuatus
arcus
ardeparin
ardha
Arduan
areata
arecoline
Aredia
areflexia
arenaceous
Arenaviridae
arenavirus
Arensin
areolae
areolar
areometric
Arestin
Arfonad
arformoterol
Argas
Argasidae
argatroban
argentaffin
argentaffinoma
argentic
Argentinian
arginase
arginine
argininemia
argininosuccinate
argininosuccinic
argininosuccinicacid
argyria
argyric
argyrism
Argyrol
argyrophil
argyrosis
arhinia
Arhythmia
ariboflavinosis
Aricept
Ariflo
Arilvax
Arimidex
aripiprazole
Aristocort
Aristogel
Aristolochia
aristolochic
aristolochine
Aristospan
arithmomania
Arixtra
Ariza
arizonae
Arkin
Arlidin
Armanni
armarium
Armoracia
aromamassage
Aromapatch
Aromasin
aromatase
aromaticum
Aron
Aronex
Aroplatin
aroyl
Arranon
arrector
arrectores
Arrestin
arrheno
arrhenoblastoma
arrhinencephaly
arrhinia
arrhythmogenesis
arrhythmogenic
Arsanilic
arseniasis
arsenicalism
arsenicate
arsenious
arsenism
arsenite
arsenobenzene
arsenoblast
Arsobal
arsonic
arsonium
arsphenamine
Artane
ArtAssist
artefacta
Artegraft
Artemisinin
arteralgia
arterectomy
arteria
arteriectasis
arteriectomy
arterio
arteriograms
arteriograph
arteriographic
arteriography
arteriohepatic
arteriol
arteriola
arteriolae
arteriolith
arteriolitis
arteriology
arteriolonecrosis
arteriolosclerotic
arteriomotor
arteriomyomatosis
arterionecrosis
arterioor
arteriopathy
arterioplasty
arteriopressor
arteriorrhaphy
arteriorrhexis
arteriosclerotic
arteriosi
arteriospasm
arteriostenosis
arteriosum
arteriosus
arteriosympathectomy
arteriotomies
arteriotomy
arteriotony
Arterious
arteriovenosa
arteriovenous
arteritis
artes
Artha
arthr
arthragra
Arthral
arthralgia
arthralgias
arthrectomy
Arthrex
ArthriCare
arthriticum
arthritide
arthritides
arthritism
Arthrobacter
arthrocace
ArthroCare
arthrocele
arthrocentesis
arthrochondritis
arthroclasia
arthrodesis
arthrodia
arthrodial
arthrodynia
arthrodysplasia
arthroempyesis
arthroendoscopy
arthroereisis
arthrofibrosis
arthrogram
arthrography
arthrogryposis
arthrolith
arthrology
arthrolysis
arthrometer
Arthropan
arthropathia
arthropathica
arthropathies
arthropathy
arthrophyma
arthrophyte
arthroplasties
arthroplasty
Arthropoda
arthropodan
arthropyosis
arthroscintigram
arthroscintigraphy
arthroscope
arthroscopically
arthroses
Arthrosew
arthrosis
arthrospores
arthrostomy
arthrosynovitis
Arthrotec
arthrotome
arthrotomy
ArthroWand
arthroxesis
arthus
Artiad
articaine
articular
articulare
articularis
articulatio
articulo
articulorum
articulus
artifactual
Artoscan
arura
Arvidsson
Arya
aryepiglottic
arylamine
arylsulfatase
arytenoid
arytenoidectomy
arytenoidei
arytenoideus
arytenoiditis
arytenoidopexy
Arzner
arzoxifene
Asacard
asaccharolyticus
Asacol
Asafoetida
Asanas
Asberg
asbestiform
Asbron
ascariasis
ascaricidal
ascaricide
ascarid
ascaridole
ascaris
Ascarops
aschelminth
Aschelminthes
Aschoff
ascites
ascitic
Asclepias
Ascomycetes
ascorbate
Ascorbyl
ascospore
Ascriptin
ascus
Asellacrin
asemasia
Asemia
Asendin
Asherman
Ashhurst
ashing
asiatica
asiaticum
asiderosis
asis
Aslera
Asmanex
Asnis
asonia
asparaginase
asparagine
aspartase
aspartate
aspecific
aspera
asperae
Aspercreme
Asperger
aspergilli
aspergilloma
aspergillosis
Aspergillus
aspergillustoxicosis
Aspergum
aspermia
Asperula
asphalgesia
asphyxial
aspidium
asplenia
Asplenic
asporogenic
asporous
Asproject
assortative
assortive
astasia
astatic
astaxanthin
asteatosis
asteatotic
Astelin
astemizole
astereognosis
asterion
asterixis
asternal
asternia
asteroides
Asth
asthenic
asthenocoria
asthenometer
asthenope
asthenopia
asthenopic
asthenospermia
asthmaticus
asthmatiform
asthmogenic
astomatous
astomia
astomus
astragalar
astragalectomy
astragalus
Astramorph
astrarius
Astro
astroblast
astroblastoma
astrocyte
astrocytoma
astroglia
astroid
astrovirus
asym
asymbolia
asynchronism
asynclitism
asyndesis
asynechia
asynergy
asynovia
asyntaxia
asystole
asystolic
Atabrine
Atacand
atactic
atactiform
Atago
ataralgesia
Atarax
ataraxia
ataraxic
Atasoy
Atavi
atavicus
ataxaphasia
ataxiaphasia
ataxophemia
ataxy
atazanavir
atelectasis
atelectatic
atelia
ateliosis
ateliotic
atelo
atelocardia
atelocephalous
atelocephaly
atelocheilia
ateloglossia
atelomyelia
atelorachidia
atelosteogenesis
atelostomia
atenolol
atevirdine
Atgam
atha
Athapaskan
athelia
atherectomy
athermic
athermosystaltic
AtheroCath
atheroemboli
atheroembolism
atheroembolus
atherogenesis
atherogenic
AtheroGenics
atheroma
atheromatosis
atheromatous
atherothrombotic
athetoid
athetosis
athetotic
athrepsia
athreptic
Athrombin
athymia
Athymic
athymism
athyreosis
athyreotic
athyria
Ativan
atla
atlantad
atlantal
atlanto
atlantoaxial
atlantodidymus
atlantoepistrophic
AtlasPlan
atloaxoid
atlodidymus
atmos
ATnativ
atocia
atomoxetine
atonia
Atonic
atonicity
atony
atopic
atopognosia
atopy
atorvastatin
atosiban
atovaquone
atoxic
ATPase
atractoid
atracurium
Atragen
atransferrinemia
atraumatic
atraumatically
atrazine
atresia
atretic
Atretol
atricor
Atridox
Atrigel
atrii
atrio
Atriodigital
atrioseptal
atriotomy
atriovenous
atrioventricular
Atrisone
Atrisorb
Atrix
Atrohist
Atromid
Atropa
AtroPen
atrophica
atrophicae
atrophicans
atrophicus
atrophoderma
Atrosept
Atrovent
atrox
attapulgite
attentional
Attenuvax
atticoantral
atticotomy
ATx
atypia
AUB Dubois
audiologic
audiological
audiology
audiometry
audiotherapy
auditus
Auerbach
Augmentin
Aujeszky
AuRA
Auralgan
auramine
auranofin
aurantia
aurantium
AuraTek
Aureomycin
aureus
auriculares
auricularis
auriculate
auriculotemporal
auriculotemporalis
aurin
aurintricarboxylic
Aurique
auris
aurist
aurium
Auro
aurothioglucose
aurothiomalate
Auroto
auscultate
auscultated
auscultating
auscultatory
Auspitz
autem
autoagglutination
AutoAmbulator
autoantibodies
autoantigen
AutoCapture
AutoCat
autoclasis
autoclaveable
Autoclip
autocrine
autocytolysin
autocytolysis
autodermic
autodigestion
autoecholalia
autoecious
autoeczematization
autoepidermic
autoerythrocyte
Autofluorescence
autogamy
autogeneic
autogenous
autograft
autografting
AutoGuard
Autohaler
autohemagglutination
autohemagglutinin
autohemolysin
autohemolysis
autohemolytic
autohemotherapy
autohypnotic
autoisolysin
autokeratoplasty
autokinesis
autolesion
autoleukoagglutinin
autologous
autology
autolysate
autolytic
automania
Autonomatic
autonomotropic
AutoPap
autopathy
autophagosome
autophagy
autopharmacologic
autophilia
autophobia
autoplasmotherapy
autoplasty
Autoplex
autoregulation
autosensitization
autosepticemia
autoserum
AutoSet
autosite
autositic
autosomal
Autosome
autosomes
autosplenectomy
AutoSuture
Autotelic
autotomography
autotopagnosia
autotoxic
autotoxicus
autotransfusion
autotransplant
autotransplantation
autotroph
Autovac
autovaccination
autovaccine
AutoVysion
autoxidation
auxanographic
auxanography
auxesis
auxetic
auxilytic
auxiometer
auxochrome
auxocyte
auxodrome
auxometric
auxometry
auxotrophic
Avage
Avakine
Avalide
Avan
Avanar
Avanca
Avandamet
Avandia
Avanta
Avapro
avascular
avascularization
Avastin
Avecor
Aveeno
Avelox
Avena
Aventyl
Avermectin
avermectins
aVF
Aviane
Avicidin
Avicine
avidin
Avigen
Avinza
avirulence
avirulent
Avita
avitaminosis
avitaminotic
Avitene
avium
aVL
avobenzone
AvocetPT
Avodart
avoir
Avonex
AvoSure
Avoximeter
Axcan
Axcis
Axenfeld
axenic
Axert
axetil
axiation
Axid
axifugal
axillae
axillaris
axillary
axillobifemoral
axillofemoral
axio
axiobuccolingual
axiolabiolingual
axiomesiodistal
axipetal
axoaxonic
Axocet
axodendritic
axodendrosomatic
axofugal
axoid
Axokine
axolemma
axolysis
axonapraxia
axoneme
axonometer
axonotmesis
axopetal
axophage
axoplasm
axoplasmic
axopodium
axosomatic
axostyle
Axotal
Axsain
AxSym
Axxess
Axya
AxyaWeld
Ayerst
Ayerza
Aygestin
Ayre
Ayurveda
Ayurvedic
azacitidine
Azactam
azalide
Azaperone
azar
AzaSite
azatadine
azathioprine
Azdone
AzdU
azelaic
azelastine
Azelex
Azene
azeotrope
azeotropic
azide
azidothymidine
azidouridine
azimilide
azimuthal
azine
azithromycin
Azlin
azlocillin
Azmacort
azo
azobenzene
Azodicarbonamide
azole
Azolid
azoospermia
Azopt
Azor
azote
azotemia
azotemic
azoturia
azoturic
azoxybenzene
aztreonam
azulene
Azulfidine
azuresin
azurophil
azurophilia
azurophilic
azygogram
azygography
azygos
azygous
B?hler
B?rjeson
Baastrup
baba
Babesia
babesiasis
babesiosis
Babinski
Babkin
BABYbird
Babyflex
Babylax
bacampicillin
bacatta
baccate
bacciform
BacFix
bache
Bacid
Baciguent
Bacillaceae
bacillar
bacille
bacillemia
bacilliformis
bacillin
Bacillophobia
bacillosis
bacilluria
bacitracin
backbleed
backbleeding
baclofen
Bacmin
bacoti
bacteremia
bacteremic
bactericidin
bacterid
bacteriemia
bacterin
bacterio
bacteriochlorophyll
bacteriochlorophylls
bacteriocidal
bacteriocide
bacteriocidin
bacteriocin
bacteriocinogen
bacteriocinogenic
bacteriocins
bacteriogenic
bacterioid
bacteriolysin
bacteriolysis
bacteriolytic
bacteriopexy
Bacteriophage
bacteriophages
Bacteriophobia
bacteriophytoma
bacteriopsonin
bacteriorhodopsin
bacteriosis
bacteriospermia
bacteriostasis
bacteriostat
bacteriostatic
bacteriostatics
bacteriotoxin
bacteriotropin
bacteriuria
bacteriuric
bacteroid
Bacteroidaceae
bacteroides
bacteruria
Bacticort
Bactine
Bactocill
Bactrim
Bactroban
Baculoviridae
Baculovirus
Baerveldt
Bafil
baga
bagassosis
BagEasy
Bahler
Baim
baja
Bakelite
Baladi
balanic
balanites
balanitis
balanoplasty
balanoposthitis
balanopreputial
balanorrhagia
balantidial
balantidiasis
Balantidium
BalAsa
Balbiani
balbuties
ballismus
ballistocardiography
ballon
ballottable
balnei
Balneol
balneotherapy
Balnetar
balsalazide
balsamum
Bamate
bambermycins
BamHI
Bancap
bancrofti
bancroftian
bancroftosis
bandemia
bandha
bandlike
Bandrowski
banewort
banian
Bankart
Bannayan
Bannon
Banophen
Banthine
Banting
Baptisia
Baraclude
baractat
baragnosis
barbadensis
barbae
Barbia
Barbidonna
barbotage
barbulae
Bardenheuer
Bardet
Bardex
baresthesia
baresthesiometer
bariatric
Bariatrician
bariatrics
Baricon
Baridium
barii
baritosis
barkeri
baro
baroceptor
barodontalgia
Baroflave
barognosis
baromacrometer
barometrograph
barophilic
baroreceptor
baroreflex
Baros
baroscope
barosinusitis
Barosperse
barotaxis
barotherapy
barotitis
barotrauma
Barraquer
Barre
BarrT
Barthel
Bartholin
bartholinitis
Bartonella
Bartonellaceae
bartonellemia
bartonelliasis
bartonelloses
bartonellosis
baryesthesia
baryglossia
barylalia
baryphonia
baryphony
baryta
basad
basale
basalis
Basaljel
Basedow
baseplate
basi
basial
basibregmatic
basicity
basicranial
basidia
Basidiobolus
basidiomycetes
basidiospore
basidiospores
basidium
basifacial
basigenous
basihyal
basihyoid
basilad
basilaris
basilateral
basilemma
basilic
basiliximab
basiloma
basinasal
basioccipital
basion
basiotic
basipetal
basisphenoid
basisylvian
Basium
basocervical
basoerythrocyte
basolateral
Basommatophora
basophil
basophilia
basophilism
basophils
basos
basosquamous
Bassen
bassorin
bathmotropic
bathmotropism
bathophenanthroline
bathophobia
bathrocephaly
bathyanesthesia
bathyesthesia
bathyhyperesthesia
bathyhypesthesia
bathypnea
batimastat
batrachian
batrachotoxin
batrachotoxins
battel
Battey
Baudelocque
baudetii
Bauhin
baumannii
Baumgarten
BaumT
bayanus
Baycol
BayHep
Bayley
Baylisascaris
BayRho
bays
Bazex
BCell
Bdellovibrio
bDNA
BDProbeTec
beaking
beal
Beals
bearwood
Beath
bebeerine
Bebulin
becaplermin
becephalous
Bechert
bechic
Bechterew
Bechtol
Becloforte
beclomethasone
Beclovent
becomco
Becomject
Beconase
Becotin
becquerel
becquerels
Bednar
bedrest
Bedsonia
beechwood
Beek
Beelith
Beepen
Beevor
Beggiatoaceae
Beggiatoales
behavioristic
Behcet
behenate
behenic
Behn
Beiersdorf
beigelii
Beldin
belemnoid
Belganyl
Belix
Bellatal
Bellergal
bello
Bellocq
Bellucci
belonephobia
belonoid
Belsey
Belzer
bemegride
Beminal
benactyzine
benacus
benazepril
benazoline
bencard
Bence
bencyclane
Bendectin
Bendopa
bendroflumethiazide
bene
Benedeck
Benefen
BeneFin
Benefix
BeneJoint
Benemid
Benicar
benigna
benin
Benirschke
benjamin
bennetti
benomyl
Benoquin
benoxinate
Benoxyl
benperidol
Bensaude
benserazide
Bensulfoid
bentiromide
bentonite
bentoquatam
Bentyl
Bentzon
benurestat
Benylin
benz
Benza
Benzac
BenzaClin
Benzagel
benzaldehyde
benzaldoxime
benzalkonium
benzamide
benzamidines
Benzamycin
benzanthracene
benzanthracenes
benzathine
benzbromarone
Benzedrex
benzenesulfonate
benzenesulfonates
benzenoid
benzethonium
benzhydryl
benzidine
benzidines
benzilate
benzimidazole
benzo
benzoaric
Benzocaine
benzodiazepine
benzoflavones
Benzofuran
Benzoin
benzoinated
benzol
benzolamide
benzole
benzomorphans
benzonatate
benzonitrile
benzophenone
benzophenoneidum
benzoporphyrin
benzopyrene
benzopyrenes
benzoquinone
benzoquinones
benzosulfimide
benzothiadiazide
benzothiadiazine
benzoyl
benzoylarginine
benzoylcholine
benzoylpas
benzphetamine
benzpyrene
benzquinamide
benzthiazide
benztropine
benzydamine
benzylamine
benzylamines
benzylidene
benzyloxycarbonyl
benzyloxyphenol
benzylpenicillin
Bepadin
bephenium
bepridil
beractant
beraprost
Berardinelli
berbamine
berberine
Berberis
Berens
berghei
Bergland
Bergstr?m
Berk
Berke
Berkefeld
Berkovits
Berlex
berlock
Berna
bernies
Berocca
Bertek
Bertini
Berubigen
berylliosis
berylliotic
besipirdine
Besnier
besnoiti
Besnoitia
besnoitiosis
Besselaar
bestatin
besylate
Betachron
betacism
Betaderm
Betadine
Betafectin
Betaferon
Betagan
betaherpesvirinae
betahistine
betaine
Betalin
Betaloc
betamethasone
betamicin
Betapace
Betapar
Betapen
Betaprone
Betaseron
Betathine
Betatrex
betatron
betaxolol
Betaxon
betazole
bethanechol
bethanidine
Betimol
Betke
Betoptic
Betula
betulin
betulinic
bevacizumab
bevelled
bexarotene
Bextra
Bexxar
bezafibrate
bezoar
Bezold
Bi?rck
Biafine
Bial
Biallelic
biarticular
biarticulate
biatrial
biatriatum
Biavax
Biaxin
bibliometrics
bibliophobia
bibliotherapy
bicalutamide
bicapsular
bicaudal
bicaudate
bicellular
bicephalus
bicha
biciliate
Bicillin
bicipital
bicisate
Bicitra
BiCNU
BiCOAG
bicommissural
bicondylar
bicornate
bicornis
bicornuate
bicoronal
bicorporate
bicortical
bicuculline
bicyclo
bidentate
bidermoma
Bidil
bidisomide
biduous
Biedl
Bielschowsky
bien
Biermer
Biernacki
Bietti
bifascicular
biferious
bifermentans
bifidobacteria
Bifidobacterium
bifidum
bifidus
Biflexa
biflorus
biforate
bifrontal
bigemina
bigeminal
bigeminate
bigeminus
bigeminy
biglycan
Bignami
Biguanides
bihora
bilaminar
BiLAP
bilayer
bilayers
bileaflet
bilevel
Bilharzia
bilharziasis
Bili
biliary
biliation
Biliblanket
BiliCheck
bilifuscin
biligenesis
biligenic
bilin
biliopancreatic
biliprasin
bilirachia
bilirubin
bilirubinemia
bilirubinuria
BiliTest
biliuria
biliverdin
biliverdine
Bilivist
Billroth
Biloba
bilobar
bilobular
bilocular
biloculare
biloma
Bilopaque
Biltricide
bimalleolar
bimastoid
bimatoprost
binasal
binauricular
Binax
Binet
Binkhorst
binotic
binovular
binoxide
binucleate
binucleation
binucleolate
bioabsorbable
bioaccumulants
bioaeration
bioamine
bioaminergic
Bioanalysts
bioartificial
bioautography
bioavailable
BioBypass
Biocef
biocenosis
Biocept
biochemically
biochemorphology
biochrome
biocidal
Bioclate
Bioclusive
Biocon
Biocor
BioCox
BioCuff
Biocult
biocybernetics
biocycle
biocytin
biocytins
Biodex
biodynamics
bioenergy
biofield
biofilm
BioFIT
Biofix
bioflavonoids
Bioflex
Biofreeze
biofuel
Biogel
biogen
biogeny
biogeotechnology
BioGlass
BioGlue
BioGran
BioHy
biohydrometallurgy
bioimplant
bioimplants
Biojector
biokinetics
BioLase
Biolex
Biolite
biologicals
biologies
BioLon
Biolox
biomagnetic
BioMarin
Biomatrix
BioMedica
Biomedics
biomembrane
biomembranous
biometer
biomicroscope
biomicroscopy
biomimetic
Biomira
biomolecule
Biomolecules
Biomox
Biomphalaria
bioMTrieux
bion
BioNavigation
bionecrosis
Bionicare
Bionix
bionomy
bionucleonics
Bionx
bioosmotic
Biopar
biophagous
Biopharm
BioPharma
biopharmaceutics
biophile
biophysiology
Bioplasia
bioplasm
bioplasmic
bioplastic
biopotential
bioprosthesis
bioprosthetic
biopsied
biopsychosocial
biopsying
biopterin
Bioptome
Biopty
Bioral
BioRCI
bioresorbable
bioreversible
biorgan
Biorheology
BioScanner
biose
Biosense
biosis
Biosite
BioSorb
BioSorbFX
Biosound
Biospal
biostabiliser
BioStar
Biostent
biostereometrics
Biostil
biostimulator
Biostop
BioStratum
Biosystems
Biot
biotaxis
biotaxy
Biotics
biotinidase
biotinyl
biotinylation
biotoxicology
biotoxin
Biotres
Biotronik
biovular
BioXanthin
BioZ
BiPAP
biparae
biparental
biparietal
biparous
bipectinated
bipenniform
biperiden
Biphetamine
biphosphate
bipinnaria
bipinnatifid
biplanar
biplate
bipotentiality
bipupillate
biramous
birefractive
birefringent
biricodar
birk
birnaviridae
birnavirus
Birt
Birtcher
birthweights
bisacodyl
bisacromial
bisalbuminemia
Bisco
biscoumacetate
bisferiens
bisferious
bishydroxycoumarin
bisiliac
Biskra
Bismatrol
bismuthosis
bismuthyl
bisoprolol
bispecific
Bispectral
bisphenol
bispherical
bisphosphatase
bisphosphate
bisphosphoglycerate
bisphosphonate
bisphosphonates
bispinous
bistable
bistephanic
bistoury
bistriata
bisulfite
Biswas
bitartrate
biteblock
bitelock
bitelocks
bitemporal
biteplane
bithionol
Bitin
Bitis
bitolterol
Bitot's
bitrochanteric
bitterling
bitterwood
bituminosis
biuret
bivalirudin
bivalved
Biventeris
biventral
biventriculare
bivius
bixin
Bixler
bizygomatic
Bjerrum
Bjork
Blackfan
blackwater
Blacky
BladderChek
Blainville
Blajwas
Blaschko
Blaschko's
blastema
blastemal
blastic
blastid
blastide
blastocele
blastocladiella
blastocoel
blastocoele
blastocoelic
blastocyst
blastocystina
Blastocystis
blastocyte
blastocytes
blastocytoma
Blastocytosis
blastoderm
blastodermic
blastodisc
blastogenesis
blastogenic
Blastokinin
blastoma
blastomas
blastomatosis
blastomatous
blastomere
blastomeres
Blastomyces
blastomycete
blastomycoses
blastomycosis
blastomycotic
blastophore
blastopore
Blastoschizomyces
blastosphere
blastospore
blastulation
Blay
Blaydes
blebectomy
Blenderm
blenn
blennadenitis
blennogenic
blennoid
blennorrhagia
blennorrhagica
blennorrhagicum
blennorrhea
blennorrheal
blennostasis
blennothorax
blennuria
Blenoxane
bleomycin
Bleph
Blephamide
blephar
blepharadenitis
blepharal
blepharectomy
blepharism
blepharitis
blepharoadenitis
blepharoatheroma
blepharochalasis
blepharoconjunctivit
blepharoncus
blepharophimosis
blepharoplast
blepharoplasty
blepharoplegia
blepharoptosis
blepharopyorrhea
blepharorrhaphy
blepharospasm
blepharostat
blepharostenosis
blepharosynechia
blepharotomy
Blistex
Blocadren
Blockout
Blom
bloodbank
bloodwit
Bluboro
BLyS
boardlike
boceras
Bochdalek
Bodansky
Bodian
Bodymate
Boeck
Boehler
Boehringer
Boerhaave
Bogaert
boidae
Boies
Boiron
Bolam
boldo
Boldu
boldus
Boley
bolling
Bombelli
bombesin
bombit
bombycis
Bombyx
Bonaccolto
Bonamil
Bonamine
bonduc
Bonefos
bonelet
BonePlast
BoneSource
bongkrek
Boniva
Bonnevie
Bonney
Bontril
Bookwalter
boomslang
Boophilus
boracis
borane
boranes
Borbonia
borborygmi
borborygmus
bord
Bordetella
bordlode
borghriche
borinic
borism
Borjeson
Borna
borneol
bornyl
Boro
Borofair
Borofax
boroglyceride
borohydride
borohydrides
boronic
Boropak
Borrel
Borrelia
borreliosis
Borst
bortezomib
bosentan
bosk
Bosniak
bosselated
Boswellia
Botallo
Bothriocephalus
Bothrops
Botox
botryoid
botryoides
botryomycoses
botuliform
botulin
botulinal
botulinum
botulinus
Bouba
boueti
bougainvillaeas
Bouge
bougie
bougienage
boule
boulton
bourg
Bourgery
boutonneuse
boutons
Bovie
bovied
bovinum
bovis
bowenoid
boydii
bpm
Bracco
brachialgia
brachialis
brachiation
brachii
brachiocarpal
brachiocephalic
brachiocrural
brachiocubital
brachiocyrtosis
brachiographic
brachioradialis
brachiosubclavian
Brachmann
Brachy
brachybasia
brachycardia
brachycephalia
brachycephalic
brachycephalism
brachycephalous
brachycephaly
brachycheilia
brachydactylia
brachydactyly
Brachydontia
brachyglossal
brachygnathia
brachymelia
brachymetacarpia
brachymetatarsia
brachymetropia
brachymetropic
brachypellic
brachyphalangia
BrachySeed
brachytherapy
bradyarrhythmia
bradyarrhythmias
bradyarthria
bradycardia
bradycardiac
bradycardic
Bradycor
bradydiastole
bradyecoia
bradyesthesia
bradyglossia
bradykinesia
bradykinetic
bradykinin
bradylalia
bradylexia
bradylogia
bradymenorrhea
bradypepsia
bradyphagia
bradyphasia
bradyphemia
bradyphrasia
Bradyphrenia
bradypnea
bradyspermatism
bradysphygmia
bradystalsis
bradytachycardia
bradytocia
bradyuria
Bragard
brahmans
braille
Bralon
BranchAmin
brancher
branchia
Branchiae
branchial
branchio
branchioma
branchiomerism
Branchiostoma
Branhamella
branks
brasiliensis
brasofensine
Brassica
Brassler
Bravais
Bravavir
Bravelle
Brazelton
braziliense
braziliensis
breakbone
BreastCheck
BreastExam
bregma
bregmatic
bremsstrahlung
Brennen
Breonesin
brephoplastic
Breslow
Brethaire
Brethine
bretylium
Bretylol
Brevarex
breves
Brevi
Brevibacterium
Brevibloc
brevicollis
Brevicon
brevis
Brevital
Brevoxyl
Bricanyl
Brickner
Brietal
brimonidine
brinase
brinolase
brinzolamide
Brion
Briquet's
brisement
Brissaud
Bristacycline
Bristagen
Bristamycin
BriteSmile
Broca
brocard
Brockenbrough
Brocq
brocresine
Brodmann
bromal
Bromaline
Bromanate
Bromanyl
Bromatapp
bromate
bromates
bromatology
bromazepam
bromcresol
bromelain
bromelains
Bromelin
Bromer
Bromfed
bromfenac
bromhexine
bromhidrosis
bromic
bromidrosis
brominate
brominated
brominism
bromism
bromisovalum
bromization
bromize
Bromo
bromobenzene
bromobenzenes
bromobenzoates
bromocresol
bromocriptine
bromocyclen
bromodeoxycytidine
bromodeoxyuridine
bromoderma
bromodiphenhydramine
bromoform
bromomania
bromomenorrhea
bromomethane
Bromophen
bromophos
bromosuccinimide
bromotrichloromethan
Bromotuss
bromouracil
bromovirus
Bromphen
brompheniramine
bromphenol
Brompheril
Bromsulphalein
bromthymol
bromurate
Bromurates
bromuret
bronchadenitis
bronchialis
bronchiarctia
bronchic
bronchiectasia
bronchiectasis
bronchiectatic
bronchiloquy
bronchiocele
bronchiocrisis
bronchiogenic
bronchiolectasis
bronchioli
bronchiolitis
bronchiolo
bronchiolus
bronchiospasm
bronchiostenosis
bronchiseptica
bronchitic
Broncho
bronchoadenitis
bronchoalveolar
bronchocandidiasis
bronchocavernous
bronchocele
bronchoconstriction
bronchoconstrictive
bronchoconstrictor
bronchodilatation
bronchodilation
bronchoegophony
bronchoesophageal
bronchoesophagology
bronchoesophagoscopy
bronchofiberscope
bronchofibroscopy
bronchogenic
bronchogram
bronchograms
bronchography
Broncholate
broncholith
broncholithiasis
bronchologic
bronchology
bronchomalacia
bronchomoniliasis
bronchomotor
bronchomucotropic
bronchopancreatic
bronchopathy
bronchophony
bronchoplasty
bronchoplegia
bronchopleural
bronchopneumopathy
bronchopulmonary
Bronchoril
bronchorrhagia
bronchorrhaphy
bronchorrhea
bronchorrhoea
bronchoscopic
bronchoscopy
bronchospasm
bronchospasms
bronchospirography
bronchospirometry
bronchostaxis
bronchostenosis
bronchostomy
bronchotome
bronchotomy
bronchotracheal
bronchovesicular
Brondecon
Brondelate
Bronitin
Bronkaid
Bronkodyl
Bronkolixir
Bronkometer
Bronkosol
Bronkotabs
Bronkotuss
bronopol
bronsted
Brontex
brontophobia
bropirimine
Brostr?m
Brostrom
Brotane
Brovana
Broviac
browlift
brownian
brownwort
broxuridine
broxyquinoline
brth
brucei
brucella
Brucellaceae
brucellar
Brucellergen
brucine
Brudzinski
Brugada
Brugia
bruisability
bruisewort
Brundage
brunescens
brunescent
Brunhilde
Brunn's
Brunnstrom
brunonian
Bruns
Brunschwig
Brushfield
Brushfield's
brushite
Bruton
brux
bruxism
Bryonia
bryonin
bryozoa
Bryrel
Bsrl
buba
bubonalgia
bubonocele
bucardia
bucc
bucca
buccae
buccal
buccale
buccalis
buccally
buccarum
buccinator
bucco
buccoaxial
buccoclusion
buccogingival
buccolabial
buccolingual
buccopharyngeal
buccoversion
Bucet
Buchem
Bucholz
buchu
bucindolol
Bucky
bucladesine
Bucladin
buclizine
bucnemia
bucrylate
budesonide
Budin
Buechel
Buerger
buetschlii
Buettner
bufanolides
bufexamac
Bufferin
Buffex
buffy
Bufo
bufonidae
buformin
bufotenin
bufotenine
bufuralol
bugwort
buiatrics
Buie
bulbi
bulbiform
bulbitis
bulbo
bulbocavernosus
bulbocavernous
bulboid
bulbomembranous
bulbourethral
bulbus
bulgaricus
Bulimus
Bulinus
bullae
bullate
Buller
bullosa
bullosis
bullous
Bullseye
bumetanide
Bumex
bunaftine
bungarotoxin
bungarotoxins
Bungarus
bunionectomy
bunionette
bunitrolol
Bunnell
bunodont
Bunostomum
Bunyamwera
Bunyaviridae
bunyavirus
Buphenyl
buphthalmos
Bupivacaine
bupranolol
Buprenex
buprenorphine
bupropion
Buquinolate
Burdach
Burefrine
buret
burgdorferi
burimamide
Burkholderia
Burkitt
Burman
burnetii
Buro
Burow
bursal
bursectomy
bursitides
bursolith
bursopathy
bursotomy
Buruli
Buschke
Buscopan
buserelin
buski
BuSpar
buspirone
Busse
Busulfan
Busulfex
busulphan
Butabar
butabarbital
butabarpal
butacaine
butaclamol
butadienes
Butal
butalamine
Butalan
butalbital
butamben
butanediol
butanoic
butanol
butanones
butaperazine
Butazolidin
butenafine
Butesin
Buthione
buthionine
Butibel
Buticaps
butirosin
Butisol
butoconazole
butopyronoxyl
butorphanol
butoxamine
butoxide
butylate
butylated
butylhydroxybutylnit
butylparaben
butylscopolammonium
butyr
butyraceous
butyricum
butyrin
butyrine
butyroid
butyrolactone
butyrophenone
butyrophenones
butyrous
butyryl
butyrylcholinesteras
butyrylthiocholine
buxine
Buzzi
Byetta
Bymixer
byssaceous
byssinosis
byssinotic
byssus
BTclard
BTrard
C.R.Bard
cabergoline
Cacchione
cacesthesia
cachectic
cachectin
Cachetic
cachexia
caci
Caco
cacodemonomania
cacodyl
cacodylate
cacodylic
cacogeusia
cacomelia
cacosmia
cactinomycin
cacumen
cacumina
cadaveric
cadaverine
cadaveris
caderas
cadherin
cadherins
cadinene
cadmiosis
CadPlan
caducous
Caduet
Caecum
Caelyx
caenorhabditis
caerulea
caerulein
caeruleus
Cafatine
Cafcit
Cafergot
Cafetrate
caffeic
caffeinism
caffeol
Caffey
Caffey's
Cagot
caine
cajennense
Cajeput
calabar
Caladryl
calamint
Calamus
Calan
Calandruccio
calbindin
calcaneal
calcanean
calcanei
calcaneitis
calcaneoapophysitis
calcaneoastragaloid
calcaneocavus
calcaneocuboid
calcaneodynia
calcaneofibular
calcaneonavicular
calcaneoplantar
calcaneoscaphoid
calcaneotibial
calcaneovalgocavus
calcaneovalgus
calcaneovarus
calcaneum
calcaneus
calcanodynia
calcarine
calcariuria
calcea
calcemia
Calcet
Calci
calcibilia
Calcibind
calcic
CalciCaps
calcicosis
calcifediol
calciferol
calcific
Calcijex
Calcilac
Calcimar
calcimeters
Calcimimetic
calcimycin
calcination
calcined
calcineurin
calcinosis
Calciparine
calcipectic
calcipenia
calcipexic
calcipexis
calcipexy
calciphilia
calciphylactic
calciphylaxis
calcipotriene
calciprivia
calciprivic
calcis
calcitonin
calcitriol
Calcitrol
calciuria
calcoaceticus
calcospherite
calculifragous
calculogenesis
calculosa
calculosis
calculous
Calderol
Caldesene
Calefacient
Calel
calfactant
Calglucon
Calicarb
caliceal
calicectasis
calicectomy
caliciviridae
calicivirus
caliculi
caliculus
caliectasis
californicum
calix
Callan
Callander
callicrein
callimiconinae
Calliphora
callithrix
callitrichinae
callosal
callose
callosi
callosotomy
callosum
Calmette
calmodulin
Calmoseptine
calor
calorigenic
Calot
calpain
calpastatin
calreticulin
calretinin
calsequestrin
Caltha
Caltrate
Caltro
Calumba
calvaria
calvarium
CalvT
calyceal
calyculi
calyculus
Calymmatobacterium
Calypte
Cama
camallanina
cambendazole
camelids
Camelpox
camerae
cameron
Camillo
camomile
Camoquin
cAMP
campanulae
Campath
Campechy
campestris
camphane
camphora
camphorsulfonate
campimeter
campimetry
campotomy
Campral
camptocormia
camptodactyly
camptomelia
camptomelic
Camptosar
camptospasm
camptothecin
Campylobacteriosis
CampyVax
camsylate
Camurati
canadensis
Canadiennes
canalicular
canaliculi
canaliculitis
canaliculus
canaliform
canaline
canalis
canalith
canaloplasty
Canasa
Canavalia
canavalin
Canavan
canavanine
cancellated
cancelli
cancellous
cancellus
canceremia
cancericidal
cancerigenic
cancerization
cancerophobia
cancerphobia
CancerVax
Cancidas
cancriform
cancroid
cancrum
Candelilla
candesartan
Candex
candicidin
candidal
candidemia
candidiases
candidiasis
candidid
candidin
candidosis
candidum
candiduria
candoxatril
canescent
canicola
canid
canidae
caninum
caninus
canis
canities
cannabidiol
cannabinoid
cannabinoids
cannabinol
cannabism
cannula
cannulae
cannulas
cannulate
cannulated
cannulating
cannulation
canrenoate
canrenone
canstatin
Canth
Canthacur
canthal
cantharidin
Cantharone
canthaxanthin
canthectomy
canthi
canthitis
cantholyses
cantholysis
canthoplasty
canthorrhaphy
canthotomy
canthus
cantliei
cantonensis
Canvaxin
capacitation
Capastat
capecitabine
capelet
capeline
Capgras
capi
capillare
capillarectasia
Capillaria
capillariasis
capillariomotor
capillaritis
capillaroscopy
capilli
capillosus
capillus
Capio
capitate
capitatum
capitellar
capitellum
capitis
capitonnage
Capitrol
capitula
capitular
capitulum
Caplan
Caplan's
Capno
Capnocytophaga
capnograph
capnography
capnometry
CapnoProbe
capotement
Capoten
Capozide
cappie
caprate
capreomycin
caprin
caprine
Capripoxvirus
caproate
caproic
caprolactam
capromab
caprylate
caprylic
CAPS rubin
capsanthin
Capsella
Capset
capsid
capsitis
capsomer
capsomere
capsomers
capsotomy
capsula
capsulae
capsularis
capsulatum
capsulatus
capsulectomy
capsuled
capsulitis
capsulodesis
capsulolenticular
capsuloma
capsuloplasty
capsulorhexis
capsulorrhaphy
capsulorrhexis
capsulotome
capsulotomy
CAPSure
captan
captopril
Capzasin
Carac
Caraco
Carafate
caramiphen
carbachol
carbacrylic
carbadox
carbamate
carbamates
carbamazepine
carbamic
carbamide
carbaminohemoglobin
carbamoyl
carbamoyltransferase
carbamyl
carbamylcholine
carbamylurea
Carbanilides
carbanion
Carbapenem
carbapenems
carbarsone
carbaryl
carbaspirin
Carbastat
Carbatrol
carbazide
carbazilquinone
carbazole
carbene
carbenicillin
carbenoxolone
carbetapentane
Carbex
carbidopa
carbimazole
carbimide
carbinol
carbinoxamine
Carbo
Carbocaine
carbocation
carbocyanines
carbocyclic
carbocysteine
Carbodec
carbodiimide
CarboFlex
carbofuran
Carbogen
carbohydrase
carbohydraturia
carbolate
carbolfuchsin
carboline
carbolines
carbolism
Carbomedics
carbomer
carbomycin
carbonica
carbonitrile
carbonium
Carbonmonoxyhemoglob
carbophenothion
carboplatin
carboprost
carborane
carboxamide
carboxin
carboxy
carboxyglutamic
carboxyhemoglobin
Carboxyhemoglobinemi
carboxykinase
carboxylase
carboxylases
carboxylate
carboxylation
carboxylesterase
carboxyltransferase
carboxymethyl
carboxymethylcellulo
carboxymyoglobin
carboxypeptidase
carboxypeptidases
carbromal
carbunculoid
carbunculosis
carbutamide
carcinectomy
carcinemia
carcinoembryonic
carcinoid
carcinolysis
carcinolytic
carcinomatoid
carcinomatosis
carcinomatous
carcinophobia
carcinosarcoma
carcinosis
cardanolides
Cardarelli
Cardec
Cardene
cardenolides
Cardi
cardiaca
cardiaci
cardiacus
Cardial
cardialgia
CardiaRisk
cardiectasis
Cardilate
Cardima
cardioaccelerator
cardioactive
cardioangiology
cardioaortic
cardioarterial
Cardiobacterium
CardioBeeper
Cardioblate
cardiocele
cardiocentesis
cardiochalasia
cardiocirculatory
cardiocirrhosis
cardiod
cardiodiaphragmatic
cardiodilator
cardiodiosis
Cardiodynamics
cardiodynia
cardioembolic
cardioesophageal
cardiogenesis
cardiogenic
Cardiografin
cardiographic
cardiography
CardioGrip
cardiohepatic
cardioid
cardioinhibitor
cardioinhibitory
cardiokinetic
cardiokymographic
cardiokymography
cardiolipin
cardiolipins
Cardiolite
cardiolysis
cardiomalacia
cardiomediastinal
cardiomegaly
cardiomelanosis
cardiomentopexy
cardiomotility
cardiomyocytes
cardiomyoliposis
cardiomyopathic
cardiomyopathies
cardiomyopathy
cardiomyopexy
cardiomyoplasty
cardionephric
cardioneural
cardioneurosis
cardiopaludism
cardiopathy
cardiopericardiopexy
cardiopericarditis
cardiophobia
cardioplasty
cardioplegia
cardioplegic
cardiopneumatic
cardiopneumograph
cardioprotection
cardioprotective
cardioptosis
cardiopulmonic
cardiopuncture
cardiopyloric
Cardioquin
cardiorenal
cardiorespiratory
CardioRex
cardiorrhaphy
cardiorrhexis
cardiosclerosis
CardioSEAL
cardioselective
Cardiosol
cardiospasm
cardiosphygmograph
cardiosplenopexy
Cardiosystems
cardiotachometer
cardiotachometry
CardioTec
cardiotherapy
cardiotocograph
cardiotocography
cardiotomy
cardiotonic
cardiotonics
cardiotopometry
cardiotoxic
cardiotoxicity
Cardiotoxin
cardiotropic
cardiovalvular
cardiovalvulotome
cardioversion
cardioverted
cardioverter
cardioverters
cardioverting
cardioverts
Cardiovirus
CardioWest
carditis
Carditonic
cardivalvulitis
Cardizem
cardophyllin
Cardura
CareLink
carene
carfecillin
Cariel
carinae
carinal
carinate
carinatum
carinii
cariogenesis
cariogenic
cariogenicity
cariology
cariostatic
carisoprodol
carlavirus
carminic
carminomycin
carminophil
Carmol
carmustine
Carn
carneae
Carnett
carnitine
Carnitor
Carnivora
carnosinase
carnosine
carnosinemia
carnosinuria
carnosus
Caro
carotenase
carotenemia
carotenoderma
carotenodermia
Carotenoid
carotenoids
carotenosis
carotic
Carotici
caroticotympanic
caroticotympanici
caroticum
caroticus
carotidynia
carotinemia
carotinosis
carotodynia
carotovora
caroverine
carpectomy
Carpentier
carphenazine
carphology
carpi
Carpine
carpitis
carpometacarpal
carpometacarpea
carpopedal
carpophalangeal
carpoptosis
carprofen
Carra
carrageenan
CarraSmart
Carrasyn
CarraVex
carrionii
Carrtone
CarTCell
carteolol
Carthamus
Cartia
carticaine
Carticel
Carticin
Cartilade
cartilaginea
cartilagines
cartilaginiform
cartilago
Cartrol
carubicin
Carum
caruncle
caruncles
caruncula
carunculae
Carus
carvacrol
Carvallo
carvedilol
carvi
carvone
caryophyllus
Casadevall
Casamino
casanthranol
caseation
Casec
casei
caseinate
caseinogen
caseosa
caseous
Casodex
caspase
caspofungin
Cassegrainian
Castanea
Castellani
Castellatus
Castleman
castlike
Castoreum
castus
casuistics
catabasis
catabatic
catabiosis
Catabiotic
catabolic
catabolin
catabolite
catabolize
catacrotic
catacrotism
catadicrotic
catadicrotism
catadioptric
Cataflam
catagen
catagenesis
catalase
catalatic
cataleptiform
cataleptoid
Catamenia
catamenial
catamnesis
cataphasia
cataphora
cataphoresis
cataphoria
cataphoric
cataphylactic
cataphylaxis
cataplasia
cataplectic
Catapres
cataracta
cataractogenic
cataractous
Catarase
Catarex
cataria
catarrhalis
catatricrotic
catatricrotism
catatropia
catchment
catechin
catechol
catecholaminergic
catecholamines
catechols
categoric
catelectrotonus
Catenabacterium
catenins
catesbeiana
cath
cathectic
cathepsin
cathepsins
cathexis
Cathflo
CathLink
cathodal
cathodic
cati
cations
CatOx
Catrix
catrup
Cattani
Cattell
caucasoid
cauda
caudad
caudae
caudatum
caudex
caudocranial
caudovirales
Cauer
caul
caulimovirus
cauline
Caulobacter
Caulophyllum
caumesthesia
causalgia
cauterant
cauteries
cautery
cavae
caval
caveola
caveolae
Caverject
CaverMap
caverniloquy
cavernitis
cavernoma
cavernosa
cavernosal
cavernosi
cavernosorum
cavernostomy
cavernosum
caviae
Cavilon
Cavisse
cavitary
cavitas
cavitates
cavitation
cavitis
Cavitron
cavoatrial
cavography
cavovarus
cavum
cavus
Cawthorne
cayetanensis
CCBs
cDNA
CDPdiacylglycerol
Ceanothus
ceap
ceasmic
CeaVac
cebidae
cebinae
cebocephalus
cebocephaly
cebus
cecectomy
cecitis
Ceclor
ceco
cecocele
cecocolopexy
cecocolostomy
cecoileostomy
cecopexy
cecoplication
cecorrhaphy
cecosigmoidostomy
cecostomy
cecotomy
cecum
Cedax
Cedilanid
CeeNu
CeeOn
cefaclor
cefadroxil
Cefadyl
cefamandole
cefatrizine
cefazolin
cefdinir
cefditoren
cefepime
cefixime
Cefizox
Cefmax
cefmenoxime
cefmetazole
Cefobid
Cefol
cefonicid
cefoperazone
ceforanide
Cefotan
cefotaxime
cefotetan
cefotiam
cefoxitin
cefpiramide
cefpodoxime
cefprozil
cefsulodin
ceftazidime
ceftibuten
Ceftin
Ceftiofur
ceftizoxime
ceftriaxone
cefuroxime
Cefzil
cele
Celebra
Celebrex
celecoxib
celer
Celestone
Celexa
Celgene
celi
celiectasia
celiectomy
celiocentesis
celiocolpotomy
celioenterotomy
celiogastrotomy
celioma
celiomyomectomy
celiomyositis
celioparacentesis
celiopathy
celiorrhaphy
celioscope
celioscopically
celioscopy
celiotomy
celiprolol
celiteACT
celitis
cella
cellae
Cellasene
CellCept
Cellegesic
cellmediated
cellobiase
cellobiose
celloidin
CellSearch
CellSpotter
Celltech
Cellugel
cellula
cellulae
cellularity
cellulase
cellulicidal
cellulifugal
cellulipetal
Cellulitis
cellulocutaneous
cellulofibrous
celluloneuritis
cellulosae
cellulosic
cellulosum
Celluvisc
celomic
Celontin
celoschisis
celoscope
celosomi
celosomia
celosomus
celothelioma
celotomy
celovirus
celozoic
Celsior
Celsus
cementicle
cementifying
cementless
cemento
cementoblast
cementoblastoma
cementoblasts
cementoclasia
cementocyte
cementogenesis
cementoma
cementosis
cementum
cenesthesia
cenesthesic
cenesthetic
Cenestin
cenocyte
cenosis
cenosite
cenotic
Centchroman
Centerchem
centesis
centi
centigray
centimorgan
centipoise
centistoke
Centocor
centr
centrad
centralis
centraphose
centration
Centrax
centrencephalic
centriciput
centrifugate
centrifugum
centrilobular
centriolar
centriole
centrioles
centroacinar
centrocecal
centrokinesia
centrokinetic
centrolobar
centromere
centromeres
centromeric
centronuclear
centrosclerosis
centrostaltic
centrotheca
Centrovite
centrum
Centry
cepacia
Cepacol
cephacetrile
Cephaelis
cephalad
cephalalgia
cephaledema
cephalexin
cephalgia
cephalhematoma
cephalhydrocele
cephalin
cephalitis
cephalocaudad
cephalocaudal
cephalocele
cephalocentesis
cephalodactyly
cephalodynia
cephaloglycin
cephalogram
cephalogyric
cephalohematocele
cephalohematoma
cephalomelus
cephalometer
cephalometric
cephalometrics
cephalometry
cephalomotor
Cephalomyia
Cephalon
cephalonia
cephalopathy
cephalopelvic
cephaloridine
cephalosporinase
cephalosporins
Cephalosporium
cephalostat
cephalothin
cephalothoracic
cephalothoracopagus
cephalotomy
cephalotrypesis
cephaloxia
cephamycins
cephapirin
cepheline
cephradine
Cephulac
Ceplene
Ceprate
Cept
Ceptaz
CeQer
ceramidase
ceramide
ceramides
ceramidosis
cerato
ceratonosus
Ceratophyllus
Ceratopogonidae
CerAxon
cercaria
cercariae
cerclage
cercocebus
cercopithecidae
cercopithecinae
cercopithecine
cercopithecus
cercus
cerea
cerebell
cerebellar
cerebellaris
cerebelli
cerebellifugal
cerebellipetal
cerebellitis
cerebellomedullaris
cerebellopontine
cerebellospinal
cerebralis
cerebri
cerebrifugal
cerebripetal
cerebritis
cerebrocerebellar
cerebrocortical
cerebrohepatorenal
cerebroma
cerebromacular
cerebromalacia
cerebromas
cerebromeningitis
cerebronic
cerebropathia
cerebropathy
cerebrophysiology
cerebropontile
cerebroretinal
cerebrosclerosis
cerebrose
cerebroside
cerebrosides
cerebrosis
cerebrospinalis
cerebrospinant
cerebrotendinous
cerebrotomy
cerebrovascular
Cerebyx
Ceredase
Ceresine
Cerespan
Cerestat
Ceretec
cerevisiae
Cerezyme
ceric
cerivastatin
Cernevit
ceroid
ceroplasty
cerous
Cerovite
Cerrobend
Certa
Certican
Certiva
Cerubidine
cerulea
ceruleae
cerulenin
ceruletide
ceruleus
ceruloplasmin
cerumen
Cerumenex
ceruminal
ceruminolysis
Ceruminolytic
ceruminosis
ceruminous
cerv
Cerveillance
cervicale
cervicales
cervicalgia
cervicalis
cervicectomy
cervicis
cervicitis
cervico
cervicoaxillary
cervicobrachial
cervicobrachialgia
cervicobregmatic
cervicocolpitis
cervicocranial
cervicofacial
cervicomedullary
cervicoplasty
cervicothoracic
cervicouterine
cervicovaginal
cervicovesical
Cervidil
CerviFix
ceryl
Cesamet
Cesarian
cESS
Cestan
cesticidal
Cestoda
Cestodaria
cestode
cestodes
cestodiasis
cestodology
cestoid
Cestoidea
Cetacaine
cetacea
Cetacort
cetalkonium
Cetamide
Cetaphil
Cetapred
cetirizine
cetomacrogol
Cetraria
cetraxate
cetrimonium
cetrorelix
Cetrotide
Cetus
cetuximab
cetyl
cetylpyridinium
cetyltrimethylammoni
cevimeline
ceylonicum
Cezin
cgm
cGMP
chabaudi
Chaddock
Chaeta
Chaetomium
Chagas
chagasic
chagoma
Chaikoff
chalasia
chalaza
chalazia
chalazion
chalcogen
chalcogenide
chalcogens
chalcone
chalcosis
chalicosis
chalone
chamaecephalic
chamaecephaly
Chamberland
Chamberlen
chancroid
Chandipura
chandrasan
Channelopathy
Chantix
chaperonin
Charae
Charas
charbon
CharcoAid
CharcoCaps
Charcodote
Chardonna
charleyhorse
Charnley
chartaceous
chartarum
chasteberry
Chatelier
Chaudhry
chauffage
Chaussier
chauvoei
chavicol
ChB
Chealamide
cheil
cheilectomy
cheilectropion
cheilitis
cheilognathoprosopos
cheiloplasty
cheilorrhaphy
cheiloschisis
cheilosis
cheilostomatoplasty
cheilotomy
cheir
cheiralgia
cheirarthritis
Cheiro
cheirogaleidae
cheirognostic
cheirokinesthesia
cheiromegaly
cheiroplasty
cheiropodalgia
cheiropompholyx
cheiroscopy
cheirospasm
Chek
chelate
chelated
Chelates
chelation
chelator
chelerythrine
Chelidonium
cheloid
chelonae
chemabrasion
Chemet
chemexfoliation
Chemier
chemiluminescence
chemiluminescent
chemiosmosis
chemiosmotic
chemisorption
chemoattractant
chemocautery
chemoceptor
chemodectoma
chemodynesis
chemoembolization
chemokine
chemokines
chemokinesis
chemolithotroph
chemolithotrophic
chemoluminescence
chemolysis
chemonucleolysis
chemoorganotroph
chemopallidectomy
chemopsychiatry
chemoradiation
Chemoradiotherapy
chemoreceptors
chemoresistance
chemosensitive
chemosensitizer
chemoserotherapy
chemosis
Chemosite
chemosmosis
chemostat
chemosterilant
chemosterilants
Chemotactic
chemotaxin
chemotaxis
chemotherapeutical
chemotherapist
chemotherapy
chemotic
chemotroph
chemotrophic
Chemstrip
ChemTrak
Chenais
Chenix
chenodeoxycholic
chenodeoxycholyltaur
chenodiol
chenopodium
cheopis
Cheracol
Cherney
Chernez
cheromania
cherubism
Cheyletiella
Cheyne
Chiari
chiasma
chiasmal
chiasmata
chiasmatic
Chibroxin
chiclero
chikungunya
Chilaiditi
Chilcott
chile
Chilomastix
Chilopoda
chimaera
Chimaphila
chimeric
chimerism
chinensis
chinoidine
chionablepsia
chir
chirality
Chiro
Chirocaine
Chiroflex
Chironomid
Chironomidae
chirurgenic
Chirurgiae
chitinase
chitobiose
chitosan
Chitosol
chitotriosidase
chlamydemia
chlamydia
Chlamydiaceae
chlamydiae
chlamydial
Chlamydiales
chlamydiosis
Chlamydomonas
chlamydospore
chloasma
chlophedianol
Chlor
chloracne
chloralose
chlorambucil
chloramine
chloramphenicol
chloranil
Chloraprep
Chloraseptic
Chlorcyclizine
chlordan
chlordecone
Chlordiazachel
chlordiazepoxide
chloremia
chlorenchyma
Chloresium
chloretic
chlorfenvinphos
chlorhexidine
chlorhydria
chloridorrhea
chloriduria
chlorisondamine
chlormadinone
chlormequat
chlormerodrin
chlormethiazole
chlormezanone
chloroacetate
chloroacetic
Chloroacetophenone
chlorobenzene
Chlorobutanol
Chlorofair
chlorohydrin
chloroma
Chloromycetin
Chloromyxin
chlorophenol
chlorophenyl
chlorophyllin
chloroprocaine
Chloroptic
chloroquine
chlorosis
chlorothiazide
chlorotrianisene
chloroxine
chloroxylenol
Chlorphed
chlorphenamidine
chlorphenesin
chlorpheniramine
chlorphenoxamine
chlorphentermine
chlorproguanil
chlorpropamide
chlorpropham
chlorprothixene
chlorpyrifos
chlorquinaldol
chlorthalidone
chloruresis
chloruretic
chloruria
chlorzoxazone
choana
choanae
choanal
Choanotaenia
chol
Cholac
cholagogic
cholagogue
cholagogues
Cholan
cholangeitis
Cholangi
cholangiectasis
cholangio
cholangiocarcinoma
cholangiocellular
cholangioenterostomy
cholangiogastrostomy
cholangiogram
cholangiograms
cholangiography
cholangiohepatoma
cholangiolar
cholangiole
cholangioles
cholangiolitic
cholangiolitis
cholangioma
cholangiopancreatogr
cholangiostomy
cholangiotomy
cholangitic
cholangitis
cholanopoiesis
cholanopoietic
cholate
chole
Cholebrine
cholecalciferol
cholecyst
cholecystagogue
cholecystalgia
cholecystectasia
cholecystectomies
cholecystectomy
cholecystenterostomy
cholecystic
cholecystis
cholecystitis
cholecystocolostomy
cholecystogram
cholecystography
cholecystojejunostom
cholecystokinetic
cholecystokinin
cholecystolithiasis
cholecystopexy
cholecystorrhaphy
cholecystosis
cholecystostomy
cholecystotomy
choledochal
choledochectomy
choledochitis
choledocho
choledochocele
choledochoduodenosto
choledochoenterostom
choledochojejunostom
choledocholith
choledocholithiasis
choledocholithotomy
choledochoplasty
choledochorrhaphy
choledochoscope
choledochoscopy
choledochostomy
choledochotomy
choledochus
Choledyl
choleglobin
cholelith
cholelithiasis
cholelithotomy
cholemia
cholemic
cholenes
choleperitoneum
cholepoiesis
cholepoietic
cholerae
choleraesuis
choleragen
choleraic
choleresis
choleretic
choleretics
choleria
cholerine
choleroid
cholescintigraphy
cholestadienes
cholestadienols
CholestaGel
cholestane
cholestanes
cholestanetriol
cholestanol
cholestanols
cholestanones
cholestasia
cholestasis
cholestatic
cholesteatoma
cholesteatosis
Cholestech
cholestenes
cholestenones
cholesteremia
cholesteric
cholesterin
cholesterolemia
cholesterolosis
cholesteroluria
cholesterosis
cholesteryl
Cholestin
CholesTrac
Cholestron
cholestyramine
Choletec
choletherapy
choleuria
cholic
Cholidase
cholinate
choline
cholinephosphotransf
cholinergics
cholinesterases
cholinoceptive
cholinoceptor
Cholinoid
cholinolytic
cholinomimetic
Cholografin
chololithiasis
Cholovue
Choloxin
choluria
choluric
Cholybar
cholylglycine
Chondodendron
chondr
chondral
chondralgia
chondrectomy
chondrification
chondritis
chondro
chondroadenoma
chondroangioma
chondroblast
chondroblastic
chondroblastoma
chondroblasts
chondrocalcific
chondrocalcin
chondrocalcinosis
chondroclast
chondrocostal
chondrocranium
chondrocyte
chondrocytes
chondrodermatitis
chondrodynia
chondrodysplasia
chondrodystrophia
Chondrodystrophic
chondrodystrophies
chondrodystrophy
chondroectodermal
Chondrogel
Chondrogenesis
chondroitin
chondroitinases
chondroitinsulfatase
chondrolipoma
chondrolysis
chondroma
chondromalacia
chondromalacic
chondromas
chondromatosis
chondromatous
chondromere
chondrometaplasia
chondromyxoid
chondromyxoma
chondromyxosarcoma
chondronectin
chondropathy
chondrophyte
chondroplasia
chondroplast
chondroplasties
chondroplasty
chondroporosis
chondrosarcoma
chondrosarcomas
chondrosis
chondrosteoma
chondrosternal
chondrosternoplasty
chondrotome
chondrotomy
chondroxiphoid
chonechondrosternon
Chongmo
Chooz
Chopart
chordae
chordal
Chordata
chordee
chorditis
chordoma
chordopoxvirinae
chordoskeleton
chordotomy
choreas
choreic
choreiform
choreoathetoid
choreoathetosis
choreomania
choreophrasia
chorioadenoma
chorioallantoic
chorioallantois
chorioamnionitis
chorioangioma
chorioblastoma
choriocapillaris
choriocarcinoma
choriocele
chorioepithelioma
choriogenesis
choriogonadotropin
chorioid
chorioma
choriomeningitis
chorion
chorionic
Chorioptes
chorioretinal
chorioretinitis
chorioretinopathy
chorismate
chorismic
chorista
choristoma
choroid
choroidal
choroidea
choroideremia
choroideum
choroiditis
choroidocapillaris
choroidocyclitis
choroidoiritis
choroidopathy
choroidoretinitis
Chotzen
chrematomania
Chrematophobia
chrom
chromaffin
chromaffinoma
chromaffinopathy
Chromalbin
chromans
Chromatiaceae
chromatid
chromatids
chromatism
chromatium
chromatogenous
chromatoid
chromatolysis
chromatophil
chromatophilia
chromatophilic
Chromatophobia
chromatophore
chromatophores
chromatopsia
ChromaVision
Chromelin
Chromesthesia
Chromitope
Chromobacterium
chromoblast
chromoblastomycosis
chromocenter
chromoclastogenic
chromocystoscopy
chromocyte
chromodacryorrhea
chromogen
chromogenesis
Chromogenic
chromogens
chromogranins
chromolipoid
chromolysis
chromomere
chromomeres
chromometer
chromomycin
chromomycins
chromomycosis
chromonar
chromonema
chromonemal
chromonemata
chromopertubation
chromophane
chromophil
chromophilic
chromophobe
chromophobia
chromophobic
chromophore
chromophoric
chromophose
chromoplast
chromoprotein
chromopsia
chromoscopy
Chromotrope
chromotropic
chronaxie
chronaxy
chronica
chronicity
chronicum
chronicus
chronobiologic
chronobiological
chronobiology
chronognosis
chronotaraxis
chronotherapy
chronotropic
chronotropism
Chronulac
Chrysalin
chrysanthemi
chrysazin
chrysenes
chrysiasis
chrysoderma
chrysogenum
Chrysomyia
chrysophanic
Chrysops
Chrysosporium
chrysotherapy
chthonophagia
Churg
Chvostek
chylangioma
chyle
chyli
chyliferous
chylification
chylocele
chylocyst
chyloderma
chylology
chylomediastinum
Chylomicra
chylomicron
chylomicronemia
chylomicrons
chylopericardium
chyloperitoneum
chylophoric
chylopleura
chylopneumothorax
chylopoiesis
chylothorax
chylous
chyluria
Chymar
chymase
Chyme
Chymex
chymification
Chymodiactin
chymopapain
chymosin
chymotrypsin
chymotrypsinogen
ChTdiak
Ciaglia
Cialis
cialit
Cibacalcin
cibum
CicaCare
cicatrectomy
cicatrical
cicatricial
cicatrization
Cichorium
ciclopirox
cidal
cide
Cidecin
cidofovir
Ciel
ciguatoxin
cilastatin
cilazapril
cilexetil
cili
ciliares
ciliaris
ciliary
Ciliata
Ciliophora
cilioretinal
cilioscleral
ciliospinal
ciliotomy
Cillin
Cillobacterium
cillosis
cilostazol
Ciloxan
cimbia
cimetidine
Cimex
Cimicifuga
Cimino
cinacalcet
cinaedi
cinanserin
cinchonamine
cinchonine
cinchonism
cineangiocardiograph
cineangiogram
cineangiograms
cineangiography
cinefluoroscopy
cineplastic
cinerea
cinereal
cinereum
cinesi
cineto
cingula
cingulate
cingulectomy
cinguli
cingulotomy
cingulum
cingulumotomy
cinnabarina
cinnamaldehyde
cinnamate
cinnamein
cinnamic
cinnamol
Cinnamomum
cinnamyl
cinnarizine
Cinnasil
Cinobac
cinoxacin
ciona
cionectomy
Cipro
Ciprodex
CircAid
Circanol
Circavite
circinata
circinate
Circon
circoviridae
circovirus
circulare
circuli
Circulin
circulus
circumanal
circumcorneal
circumduction
circumlental
circumnuclear
circumocular
circumoral
circumorbital
Circumplex
circumpulpar
circumrenal
circumscripta
circumstantiality
circumvallata
cirsectomy
cirsoid
cirsomphalos
cisapride
cisatracurium
Cision
cisk
cisplatin
cissa
cisterna
cisternae
cisternal
cisternogram
cisternography
cistron
citalopram
Citanest
citenamide
citicoline
citiolone
Citracal
citraconic
citral
citrinin
Citro
Citrobacter
Citrolith
Citroma
Citrotein
citrovorum
citrullin
citrulline
citrullinemia
citrullinuria
cittosis
cladistic
Clado
cladosporiosis
Cladosporium
cladribine
Claforan
Clagett
clapotement
claquement
Claravis
clarificant
Clarinex
clariores
clarithromycin
Clarus
clastic
clastogenic
clastothrix
clathrate
clathrin
claudicant
claudication
claustra
claustrophilia
claustrum
clava
clavate
clavatum
clavi
Claviceps
clavicotomy
clavicular
clavipectoral
clavulanate
clavulanic
clavus
clawfoot
clawhand
clawtoe
Clayman
ClearCut
Clearplan
ClearSite
ClearView
clefting
cleid
cleidocranial
cleidoic
cleidotomy
clemastine
clenbuterol
Clens
Cleocin
cleoid
Clerico
clericorum
clevidipine
clidinium
climactericum
Climara
climatotherapy
clin
Clinac
Clinda
Clindagel
clindamycin
Clindesse
Clindets
Clindex
clinica
clinicopathologic
clinicopathological
Clinimix
Clinisol
Clinistix
Clinitek
Clinitest
clinocephaly
clinodactyly
clinoid
clinophobia
Clinoril
clinoscope
clioquinol
Clipoxide
Clirans
cliseometer
Clistin
clition
clitorectomy
clitoridectomy
clitoridis
clitoriditis
clitoridotomy
clitorimegaly
clitorism
clitoritis
clitoromegaly
clitoroplasty
clival
clivi
clivography
clivus
cloacal
cloacin
cloacogenic
clobetasol
Clobex
clocortolone
Cloderm
clodronate
clodronic
clofarabine
clofazimine
clofenapate
clofibrate
clofibric
clofibrol
Cloforex
Clolar
clomethiazole
Clomid
clomiphene
clomipramine
clonality
clonazepam
clonic
clonicity
clonicotonic
clonidine
clonism
clonixin
clonogenic
clonograph
Clonopin
clonorchiasis
Clonorchis
clonospasm
clonus
clopamide
clopenthixol
clopidogrel
clopidol
Clopra
cloprostenol
Cloquet
Cloquet's
clorazepate
clorgyline
Clorpactin
Clorpres
clorsulon
clortermine
clos
CloseSure
closterovirus
clostridial
clostridii
closylate
CLOtest
clotrimazole
Clouston
cloxacillin
Cloxapen
clozapine
Clozaril
clubhand
cluneal
clunes
clunis
clunium
clupeine
clusterin
Clutton
clysis
ClTrambault
Cmax
CME
cMLC
cnemial
cnid
Cnidaria
cnidarian
cnidoblast
CoA
coacervate
coacervation
Coactin
coadaptation
coag
coagglutination
coagglutinin
CoaguChek
coagulability
coagulable
coagulans
coagulase
coagulative
Coaguli
Coaguloop
coagulopathy
Coakley
coapt
coaptation
coapted
coarct
coarctate
coarctation
cobalamin
cobalamins
cobaltic
cobaltinitrite
cobaltous
cobamamide
Coban
cobblestoning
Cobefrin
Cobelli
Cobex
Coblation
cocarcinogen
cocarcinogenesis
coccal
cocci
coccidia
coccidial
coccidioidal
Coccidioides
coccidioidin
coccidioidoma
coccidioidomycoses
coccidioidomycosis
coccidioidosis
coccidioses
coccidiosis
Coccidiostat
coccidiostats
coccidium
coccigenic
coccobacillary
coccobacillus
coccobacteria
coccoid
cocculus
coccyalgia
coccycephalus
coccydynia
coccygeal
coccygectomy
coccygeum
coccygeus
coccygodynia
coccygotomy
cochl
cochleariform
cochlearis
cochleas
cochleitis
cochleotopic
cochleovestibular
Cochliomyia
Cockayne
Cockett
coctolabile
coctostabile
coculture
Codafed
Codamine
Codegest
Codehist
Codiclear
Codimal
Codivilla
codominance
codominant
codon
Codoxy
Coecal
coele
Coelenterata
coeloblastula
coelom
coelomate
coelomic
coelosomy
coenocyte
coenuriasis
coenurosis
Coenurus
coeruleus
coeur
coformycin
cogener
Cogentin
Cognex
cogwheeling
COHb
cohosh
coinfected
coinfection
coinosite
coitophobia
Colace
Colaris
colation
Colazal
Colazide
ColBenemid
Colcemid
colchicine
Coldrine
colectomy
Coleoptera
coles
colesevelam
Colesiota
Colestid
colestipol
Colettsia
colfosceril
colibacillemia
colibacillosis
colibacilluria
colibacillus
Colibri
colica
colicin
colicinogenic
colicins
colicoplegia
colicystitis
colicystopyelitis
coliform
colimycin
Colinearity
colinephritis
colinus
colipase
colipases
coliphage
coliphages
coliplication
colipuncture
colipyelitis
colisepsis
colistimethate
colistin
colitides
colitoxemia
colitoxicosis
colitoxin
coliuria
coll
colla
collagenase
collagenases
collagenation
collagenic
collagenitis
collagenoblast
collagenocyte
collagenogenic
collagenolysis
collagenolytic
collagenoses
collagenosis
collagenous
CollagENT
Collamer
collarettes
Collastin
CollectFirst
collenchyma
Colles
colli
colliculectomy
colliculi
colliculitis
colliculus
collidine
colligative
colliquation
colliquative
collodiaphyseal
collodion
Colloral
collum
collutory
collyria
collyrium
colobinae
coloboma
colobus
ColoCare
colocecostomy
colocentesis
colocholecystostomy
coloclysis
coloclyster
colocolostomy
Colocort
colocutaneous
coloenteritis
colofixation
colography
coloileal
colombo
Colonaid
colonalgia
colonitis
colonography
colonopathy
colonorrhagia
colonorrhea
colonoscope
colonoscoped
colonoscopic
Colopath
colopexy
coloplication
coloproctectomy
coloproctitis
coloproctostomy
coloptosis
colopuncture
colorectitis
colorectostomy
colorectum
colorimetry
Colormate
colorrhaphy
coloscope
coloscopic
coloscopy
colosigmoidostomy
colostric
colostrorrhea
colostrous
colostrum
colotomy
colour
Colovage
colovaginal
colovesical
colp
colpalgia
colpatresia
colpectasia
colpectomy
colpeurysis
colpitis
colpo
colpocele
Colpocephaly
colpocleisis
colpocystitis
colpocystocele
colpocystoplasty
colpocystourethropex
colpocytogram
colpocytology
colpodynia
colpohyperplasia
colpomicroscope
colpomicroscopy
colpoperineopexy
colpoperineoplasty
colpoperineorrhaphy
colpopexy
colpoplasty
colpopoiesis
colpoptosis
colporectopexy
colporrhagia
colporrhaphy
colporrhexis
colposcope
colposcopic
colposcopies
colposcopy
colpospasm
colpostat
colpostenosis
colpostenotomy
colposuspension
colpotomizer
colpotomy
colpoxerosis
coltivirus
Colubridae
columella
columellae
columellar
columna
columnae
columnization
Coly
colypeptic
Colyte
Combaire
Combi
Combid
CombiDerm
Combidex
Combipatch
Combipres
Combitube
Combivent
Combivir
comblike
Combretastatin
Combunox
COMe
Comed
comedogenic
Comedolytics
comedomastitis
comedones
comedos
Comhist
comitans
comitant
comitantes
comites
commensal
commensalism
comminution
Commiphora
commissura
commissurae
commissure
commissures
commissurorrhaphy
commissurotomy
Commotio
communic
communicans
communicantes
communis
comorbid
comorbidities
comorbidity
comoros
comovirus
compactin
compactum
compartmentation
Compascuum
Compazine
Compleat
complexation
Complexed
complexing
complexometric
complic
complicata
compn
composita
Composix
Download .txt
gitextract_6ndfnbuo/

├── .Xresources
├── .bashrc
├── .config/
│   └── systemd/
│       └── user/
│           ├── davmail.service
│           ├── minidlna.service
│           ├── mpd.service
│           ├── offlineimap.service
│           ├── offlineimap.timer
│           ├── rclone.service
│           └── rclone.timer
├── .ghc/
│   └── ghci.conf
├── .gitconfig
├── .gitignore
├── .mutt/
│   ├── colorscheme
│   ├── keybindings
│   ├── mailcap
│   ├── muttgpg
│   ├── muttrc
│   └── signature
├── .tmux.conf
├── .vim/
│   ├── after/
│   │   └── syntax/
│   │       └── man.vim
│   ├── colors/
│   │   ├── apprentice.vim
│   │   ├── blackboard.vim
│   │   ├── distinguished.vim
│   │   ├── grb256.vim
│   │   ├── hipster.vim
│   │   ├── ir_black.vim
│   │   ├── railscasts.vim
│   │   ├── slate2.vim
│   │   ├── vibrantink.vim
│   │   ├── vividchalk.vim
│   │   ├── wombatty.vim
│   │   └── xoria256.vim
│   └── spell/
│       ├── eng.utf-8.add
│       ├── eng.utf-8.add.spl
│       └── eng.utf-8.spl
├── .vimpcrc
├── .vimrc
├── .xbindkeysrc
└── .xinitrc
Condensed preview — 39 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (735K chars).
[
  {
    "path": ".Xresources",
    "chars": 2012,
    "preview": "Xcursor.theme         : Bluecurve\n\nURxvt*depth           : 32\nURxvt*buffered        : true\nURxvt*foreground      : #aaaa"
  },
  {
    "path": ".bashrc",
    "chars": 7938,
    "preview": "# Setup {{{1\nstty -ixon -ixoff # turns off CTRL-S\n[[ $- != *i* ]] && return\nbind '\"\\C-o\":\"cd_with_fzf\\n\"'\nbind '\"\\C-f\":\""
  },
  {
    "path": ".config/systemd/user/davmail.service",
    "chars": 186,
    "preview": "[Unit]\nDescription=Exchange tunneling service\nAfter=network.target network-online.target dbus.socket\n\n[Service]\nType=sim"
  },
  {
    "path": ".config/systemd/user/minidlna.service",
    "chars": 269,
    "preview": "[Unit]\nDescription=DLNS Server\nAfter=network.target network-online.target dbus.socket\n\n[Service]\nType=simple\nExecStart=m"
  },
  {
    "path": ".config/systemd/user/mpd.service",
    "chars": 822,
    "preview": "[Unit]\nDescription=Music Player Daemon\nDocumentation=man:mpd(1) man:mpd.conf(5)\nAfter=network.target sound.target\n\n[Serv"
  },
  {
    "path": ".config/systemd/user/offlineimap.service",
    "chars": 175,
    "preview": "[Unit]\nDescription=Mailbox synchronization service\nAfter=graphical-session.target\n\n[Service]\nType=oneshot\nExecStart=/usr"
  },
  {
    "path": ".config/systemd/user/offlineimap.timer",
    "chars": 149,
    "preview": "[Unit]\nDescription=Mailbox synchronization timer\n\n[Timer]\nOnBootSec=2m\nOnUnitActiveSec=1m\nUnit=offlineimap.service\n\n[Ins"
  },
  {
    "path": ".config/systemd/user/rclone.service",
    "chars": 282,
    "preview": "[Unit]\nDescription=RClone\nDocumentation=man:rclone(1)\nAfter=network.target network-online.target dbus.socket\n\n[Service]\n"
  },
  {
    "path": ".config/systemd/user/rclone.timer",
    "chars": 149,
    "preview": "[Unit]\nDescription=Google Drive synchronization timer\n\n[Timer]\nOnBootSec=2m\nOnUnitActiveSec=5m\nUnit=rclone.service\n\n[Ins"
  },
  {
    "path": ".ghc/ghci.conf",
    "chars": 477,
    "preview": "import Control.Applicative\nimport Control.Monad\n\nimport Data.String\nimport Data.Char\nimport Data.List\nimport Data.Monoid"
  },
  {
    "path": ".gitconfig",
    "chars": 653,
    "preview": "[user]\n\tname = Conner McDaniel\n\temail = connermcd@gmail.com\n[github]\n\tuser = connermcd\n[push]\n\tdefault = tracking\n[merge"
  },
  {
    "path": ".gitignore",
    "chars": 70,
    "preview": ".local\n.ICAClient\n.npm\n.weechat\n.cache\n.gimp-2.8\n.ssh\n.gnupg\n.git\n.mu\n"
  },
  {
    "path": ".mutt/colorscheme",
    "chars": 9842,
    "preview": "# vim: filetype=muttrc\n\n# make sure that you are using mutt linked against slang, not ncurses, or\n# suffer the consequen"
  },
  {
    "path": ".mutt/keybindings",
    "chars": 2362,
    "preview": "bind index,pager,attach g noop\nbind index,pager \\CP sidebar-prev       # Ctrl-Shift-P - Previous Mailbox\nbind index,page"
  },
  {
    "path": ".mutt/mailcap",
    "chars": 3012,
    "preview": "# MS Excel\napplication/x-msexcel; libreoffice --calc %s\napplication/ms-exc; libreoffice --calc %s\napplication/excel; lib"
  },
  {
    "path": ".mutt/muttgpg",
    "chars": 1777,
    "preview": "my_hdr X-GPG-Key-Server: keys.gnupg.net\nmy_hdr X-GPG-Key-FingerPrint: 8561 D5FA 7B5C 5DE6 49A1 1534 D187 5497 1147 80A3\n"
  },
  {
    "path": ".mutt/muttrc",
    "chars": 2353,
    "preview": "# first things first\nset editor      = \"vim +start\"\n\nset mail_check  = 0\nset copy        = no\nset sidebar_visible\nset si"
  },
  {
    "path": ".mutt/signature",
    "chars": 11,
    "preview": "\n\nConner\n\n\n"
  },
  {
    "path": ".tmux.conf",
    "chars": 1647,
    "preview": "# UTF8\n# set-option -g status-utf8 on\nset-option -g xterm-keys on\n\nnew-session\n\n# Mac OSX pasteboard\n# set-option -g def"
  },
  {
    "path": ".vim/after/syntax/man.vim",
    "chars": 1098,
    "preview": "syn match manSectionHeading \"^\\s\\+[0-9]\\+\\.[0-9.]*\\s\\+[A-Z].*$\" contains=manSectionNumber\nsyn match manSectionNumber \"^\\"
  },
  {
    "path": ".vim/colors/apprentice.vim",
    "chars": 16522,
    "preview": "\" 'apprentice.vim' -- Vim color scheme.\n\" Author:       Romain Lafourcade (romainlafourcade@gmail.com)\n\" Description:  E"
  },
  {
    "path": ".vim/colors/blackboard.vim",
    "chars": 2595,
    "preview": "\" Vim color scheme\n\"\n\" Name:         blackboard.vim\n\" Maintainer:   Ben Wyrosdick <ben.wyrosdick@gmail.com>\n\" Last Chang"
  },
  {
    "path": ".vim/colors/distinguished.vim",
    "chars": 13823,
    "preview": "\" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>\n\" Source repository: https://github.com/Lokaltog/vim-distingu"
  },
  {
    "path": ".vim/colors/grb256.vim",
    "chars": 1664,
    "preview": "\" Based on\nruntime colors/ir_black.vim\n\nlet g:colors_name = \"grb256\"\n\nhi pythonSpaceError ctermbg=red guibg=red\n\nhi Comm"
  },
  {
    "path": ".vim/colors/hipster.vim",
    "chars": 5433,
    "preview": "\" --- hipster ---\n\" Author: Conner McDaniel (connermcd.com)\nif version > 580\n   hi clear\n   if exists(\"syntax_on\")\n     "
  },
  {
    "path": ".vim/colors/ir_black.vim",
    "chars": 10185,
    "preview": "\" ir_black color scheme\n\" More at: http://blog.infinitered.com/entries/show/8\n\n\n\" **************************************"
  },
  {
    "path": ".vim/colors/railscasts.vim",
    "chars": 4678,
    "preview": "\" Vim color scheme\n\"\n\" Name:         railscasts.vim\n\" Maintainer:   Nick Moffitt <nick@zork.net>\n\" Last Change:  01 Mar "
  },
  {
    "path": ".vim/colors/slate2.vim",
    "chars": 3213,
    "preview": "\"%% SiSU Vim color file\n\" Slate Maintainer: Ralph Amissah <ralph@amissah.com>\n\" (originally looked at desert Hans Fugal "
  },
  {
    "path": ".vim/colors/vibrantink.vim",
    "chars": 2408,
    "preview": "\" Vim color scheme\n\"\n\" Name:         vibrantink.vim\n\" Maintainer:   Jo Vermeulen <jo.vermeulen@gmail.com> \n\" Last Change"
  },
  {
    "path": ".vim/colors/vividchalk.vim",
    "chars": 6868,
    "preview": "\" Vim color scheme\n\" Name:         vividchalk.vim\n\" Author:       Tim Pope <vimNOSPAM@tpope.info>\n\" Version:      2.0\n\" "
  },
  {
    "path": ".vim/colors/wombatty.vim",
    "chars": 3750,
    "preview": "\" Vim color file\n\" Original Maintainer:  Lars H. Nielsen (dengmao@gmail.com)\n\" Modified By: Conner McDaniel (connermcd@g"
  },
  {
    "path": ".vim/colors/xoria256.vim",
    "chars": 6107,
    "preview": "\" Vim color file\n\"\n\" Name:       xoria256.vim\n\" Version:    1.5\n\" Maintainer:\tDmitriy Y. Zotikov (xio) <xio@ungrund.org>"
  },
  {
    "path": ".vim/spell/eng.utf-8.add",
    "chars": 554727,
    "preview": "nonmaleficence\ncapacitated\ntimeline\nmitochondrial\nhydrolytic\nturgor\nultrastructural\npolysomes\nfibrillar\nintercellular\nmi"
  },
  {
    "path": ".vimpcrc",
    "chars": 717,
    "preview": "hi tab default white\nhi status default white\nhi current default green\nhi id default yellow\n\nset window playlist\nset auto"
  },
  {
    "path": ".vimrc",
    "chars": 9651,
    "preview": "\" Setup {{{1\nset nocompatible\n\ncolorscheme apprentice\n\nfiletype plugin indent on\nsyntax enable\n\n\" Options {{{1\nset autor"
  },
  {
    "path": ".xbindkeysrc",
    "chars": 900,
    "preview": "# System Control {{{1\n\"lock-screen\"\n  control + mod4 + q\n\"scrot -d 4\"\n  Print\n# Brightness control {{{1\n\"xbacklight -inc"
  },
  {
    "path": ".xinitrc",
    "chars": 571,
    "preview": "if [ -d /etc/X11/xinit/xinitrc.d ]; then\n  for f in /etc/X11/xinit/xinitrc.d/*; do\n    [ -x \"$f\" ] && . \"$f\"\n  done\n  un"
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the connermcd/dotfiles GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 39 files (663.2 KB), approximately 257.5k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!