Skip to content

Instantly share code, notes, and snippets.

View roman-kirsanov's full-sized avatar
🚀
turbo mode

Roman Kirsanov roman-kirsanov

🚀
turbo mode
  • Mexico City, Mexico
View GitHub Profile
@roman-kirsanov
roman-kirsanov / gist:ec8276327477e1c342cff6c74714cbbd
Last active September 21, 2021 19:09
GMONE Matcha VS Code Theme
{
// paste this to settings.json
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#4cbf9913",
"activityBar.activeBorder": "#4cbf99",
"activityBar.activeFocusBorder": "#4cbf99",
"activityBar.background": "#0b0e0e",
"activityBar.dropBorder": "#3a4b4e",
"activityBar.inactiveForeground": "#a6a6a6",
@roman-kirsanov
roman-kirsanov / clang-BuildSystem.js
Last active September 16, 2020 14:37
Clang Build System powered by Node.js
module.exports = options => {
options = Object.assign({
path: null,
name: null
}, options);
if (options.path === null || options.path === undefined)
throw new Error('BuildSystem: "path" is required');