Add a script to extract audio from a video

This commit is contained in:
2022-02-07 10:22:42 -05:00
parent 09d69f997b
commit 8b634e3841
2 changed files with 55 additions and 3 deletions

3
vimrc
View File

@@ -374,9 +374,6 @@ augroup campoCmds
" Jump to last cursor position unless it's invalid or in an event handler.
autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g`\"" | endif
" Indent HTML <p> tags.
autocmd FileType html,eruby if g:html_indent_tags !~ '\\|p\>' | let g:html_indent_tags .= '\|p\|li\|dt\|dd' | endif
" Properly indent schemes (scheme, racket, etc).
autocmd BufRead,BufNewFile *.{lisp,scm,rkt} setlocal equalprg=scmindent.rkt