Skip to content

Instantly share code, notes, and snippets.

View hungify's full-sized avatar
🎯
Focusing

hungify hungify

🎯
Focusing
  • ˋ@2024ˎˊ
  • undefined, Vietnam
  • 09:55 (UTC +07:00)
View GitHub Profile
@hungify
hungify / keymap.json
Last active February 15, 2024 06:31
My Zed keymap Settings
[
// Bindings from VS Code
{
"context": "Editor",
"bindings": {
"cmd-shift-k": "editor::DeleteLine",
"cmd-i": "editor::ShowCompletions",
"alt-up": "editor::MoveLineUp",
"alt-down": "editor::MoveLineDown",
"alt-shift-down": "editor::DuplicateLine", // alt is option
@hungify
hungify / settings.json
Last active February 24, 2024 13:14
My Zed Settings
{
"extend_comment_on_newline": false,
"format_on_save": "on",
"theme": "Ayu Mirage",
"formatter": "auto",
"buffer_font_family": "Monaspace Neon",
"buffer_font_features": {
"calt": true,
"liga": true,
"dlig": true,
@hungify
hungify / alpine_cron_job.md
Last active December 3, 2023 09:40
Running cron job inside a Docker container with Alpine distribution.

Running cron job inside a Docker container with Alpine distribution

With Docker

alpine.dockerfile

FROM alpine

RUN which crond && rm -rf /etc/periodic