Skip to content

Instantly share code, notes, and snippets.

View Matt-Deacalion's full-sized avatar
🏹
Ready, Fire, Aim!

Matt Matt-Deacalion

🏹
Ready, Fire, Aim!
  • Budapest, Hungary
View GitHub Profile
@o770
o770 / mpvf.md
Last active January 8, 2025 06:40
Run MPV with optional MPV profiles on a set of files found with GNU Find.

MPVF is a Bash script that runs MPV with optional MPV profiles on a set of files found with GNU Find by including and excluding shell patterns and setting the depth levels in the directory tree. Search patterns and directories are entered on the command line or in the script. File names can also be matched against an optional list of file extensions. With no options entered, the script's defaults are used.

Usage
mpvf {[<mpv profile,...>] [-a <pattern>] [-e <pattern>] [-i <pattern>] [-n <levels>] [-x <levels>] [directory...] | --help | --version}

Options
<mpv profile,...>
Name of the MPV profile to use.

-a, --alt \

@s3rgeym
s3rgeym / README.md
Last active March 5, 2025 17:11
Превращаем Vim в VS Code

image

@karolba
karolba / .vimrc
Last active January 15, 2025 13:07
my new vimrc in Vim9 script
vim9script
# vim: sts=4 sw=4 sts=4 et
&compatible = false # It's not 1980 anymore, don't care about vi-compatibility
syntax on # This should be set by default, but just in case
filetype plugin indent on # This should be set by default, but just in case
&autowrite = true # Write the contents of the file automatically before many actions
&autoread = true # Detect when other programs modify a file we're editing
&backspace = 'indent,eol,start' # Allow backspacing over everything in insert mode.
&backup = true # Enable backups