Skip to content

Instantly share code, notes, and snippets.

View sum01's full-sized avatar

KTGH sum01

View GitHub Profile
@sum01
sum01 / 2018-05-21T16_31_02_834Z-debug.log
Created May 21, 2018 16:39
Buttercup-desktop npm-cache build err log
58029 silly install domain-browser@1.1.7
58030 info lifecycle domain-browser@1.1.7~install: domain-browser@1.1.7
58031 silly install domelementtype@1.3.0
58032 info lifecycle domelementtype@1.3.0~install: domelementtype@1.3.0
58033 silly install domhandler@2.4.1
58034 info lifecycle domhandler@2.4.1~install: domhandler@2.4.1
58035 silly install dotenv@5.0.1
58036 info lifecycle dotenv@5.0.1~install: dotenv@5.0.1
58037 silly install dotenv-expand@4.2.0
58038 info lifecycle dotenv-expand@4.2.0~install: dotenv-expand@4.2.0
From 247fe624a707f0623a6d55f897fda735c3c21a52 Mon Sep 17 00:00:00 2001
From: sum01 <sum01@protonmail.com>
Date: Sun, 20 May 2018 17:19:21 -0400
Subject: [PATCH] Various fixes and improvements
Added:
* Dependency minimums
* GPL3 specifically
Fixed:
@sum01
sum01 / fmt.lua
Last active November 7, 2017 19:44
A one-size-fits-all fmt plugin for Micro text-editor
VERSION = "1.0.0"
-- Table (of tables) for lookup (keep alphabetical order plz).
-- Reported filetype (by Micro) on the left, command & args on the right.
fmt_table = {
["fish"] = {"fishfmt", "-w"},
["go"] = {"gofmt", "-s -w"},
["rust"] = {"rustfmt", nil}, -- no args, overwrite is default
["shell"] = {"shfmt", "-s -w"}
}