Skip to content

Instantly share code, notes, and snippets.

View vdoroshko's full-sized avatar

Vitaly Doroshko vdoroshko

  • Minsk, Belarus
  • 09:40 (UTC +03:00)
View GitHub Profile
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette (cmd-shift-p / ctrl-shift-p)
{
"buffer_font_family": "Zed Mono",
@vdoroshko
vdoroshko / libpng_test.c
Created November 12, 2023 19:54 — forked from niw/libpng_test.c
How to read and write PNG file using libpng. Covers trivial method calls like png_set_filler.
/*
* A simple libpng example program
* http://zarb.org/~gc/html/libpng.html
*
* Modified by Yoshimasa Niwa to make it much simpler
* and support all defined color_type.
*
* To build, use the next instruction on OS X.
* $ brew install libpng
* $ clang -lz -lpng16 libpng_test.c
@vdoroshko
vdoroshko / vscode-settings.json
Last active December 23, 2024 18:15
Visual Studio Code Settings
{
"breadcrumbs.enabled": false,
"editor.guides.indentation": false,
"editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace",
"editor.indentSize": "tabSize",
"editor.lineHeight": 20,
"editor.minimap.enabled": false,
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "none",