Update vim color scheme

This commit is contained in:
Michael Campagnaro 2023-01-19 18:13:46 -05:00
parent 2343c46b89
commit 89d5709677
2 changed files with 9 additions and 4 deletions

View File

@ -362,6 +362,12 @@ dl_youtube_vid() {
error "Format: $0 <make folder?> <url> <optional args>\n" error "Format: $0 <make folder?> <url> <optional args>\n"
return return
fi fi
if [[ ! $url =~ "v=" ]]; then
error "URL is missing a video id"
return
fi
if [[ $format == "" ]]; then if [[ $format == "" ]]; then
printf "${BOLD}No format given; using best available.${NORMAL}\n" printf "${BOLD}No format given; using best available.${NORMAL}\n"
# Download best mp4 video and best m4a audio, then merge. # Download best mp4 video and best m4a audio, then merge.

View File

@ -34,7 +34,6 @@ let s:select = "546e8f"
let s:window = "37474f" let s:window = "37474f"
let s:comment = "5dea82" let s:comment = "5dea82"
let s:tab = "03404a" let s:tab = "03404a"
let s:cursor = "023940"
let s:error = "e40e0e" let s:error = "e40e0e"
let s:proc = "0eefcb" let s:proc = "0eefcb"
let s:warn = "dcd53e" let s:warn = "dcd53e"
@ -69,11 +68,11 @@ if version >= 700
call X("PMenu", s:text, s:select, "none") " Autocompletion menu call X("PMenu", s:text, s:select, "none") " Autocompletion menu
call X("PMenuSel", s:text, "027990", "bold") " Selected autocompletion item call X("PMenuSel", s:text, "027990", "bold") " Selected autocompletion item
call X("SignColumn", "", s:bg, "none") call X("SignColumn", "", s:bg, "none")
call X("CursorLine", "", s:cursor, "none") " Horizontal line at the cursor. call X("CursorLine", "", "022f36", "none") " Horizontal line at the cursor.
call X("CursorColumn", "", s:cursor, "none") " Vertical line at the cursor. call X("CursorColumn", "", "022c33", "none") " Vertical line at the cursor.
end end
if version >= 703 if version >= 703
call X("ColorColumn", "", "034a4a", "none") " Vertical line set by colorcolumn option. call X("ColorColumn", "", "022c33", "none") " Vertical line set by colorcolumn option.
end end
" Standard Highlighting " Standard Highlighting