Skip to content

Instantly share code, notes, and snippets.

View mloaf's full-sized avatar
🥝
kiwi~

mloaf

🥝
kiwi~
  • Vietnam
View GitHub Profile
@mloaf
mloaf / settings.json
Created July 11, 2025 14:14
Zed Settings
// 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)
{
"base_keymap": "JetBrains",
@mloaf
mloaf / template.cpp
Last active July 11, 2025 13:40
CPP Competitive Programming Tempalte
// ## DEFAULT HEADER ##
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <functional>
#include <numeric>
#include <cmath>