Update vim color scheme
This commit is contained in:
parent
2343c46b89
commit
89d5709677
6
aliases
6
aliases
|
@ -362,6 +362,12 @@ dl_youtube_vid() {
|
|||
error "Format: $0 <make folder?> <url> <optional args>\n"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ ! $url =~ "v=" ]]; then
|
||||
error "URL is missing a video id"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ $format == "" ]]; then
|
||||
printf "${BOLD}No format given; using best available.${NORMAL}\n"
|
||||
# Download best mp4 video and best m4a audio, then merge.
|
||||
|
|
|
@ -34,7 +34,6 @@ let s:select = "546e8f"
|
|||
let s:window = "37474f"
|
||||
let s:comment = "5dea82"
|
||||
let s:tab = "03404a"
|
||||
let s:cursor = "023940"
|
||||
let s:error = "e40e0e"
|
||||
let s:proc = "0eefcb"
|
||||
let s:warn = "dcd53e"
|
||||
|
@ -69,11 +68,11 @@ if version >= 700
|
|||
call X("PMenu", s:text, s:select, "none") " Autocompletion menu
|
||||
call X("PMenuSel", s:text, "027990", "bold") " Selected autocompletion item
|
||||
call X("SignColumn", "", s:bg, "none")
|
||||
call X("CursorLine", "", s:cursor, "none") " Horizontal line at the cursor.
|
||||
call X("CursorColumn", "", s:cursor, "none") " Vertical line at the cursor.
|
||||
call X("CursorLine", "", "022f36", "none") " Horizontal line at the cursor.
|
||||
call X("CursorColumn", "", "022c33", "none") " Vertical line at the cursor.
|
||||
end
|
||||
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
|
||||
|
||||
" Standard Highlighting
|
||||
|
|
Loading…
Reference in New Issue
Block a user