this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

In this codebase we are pro-goblin.

+93
+12
.opencode/opencode.json
··· 1 + { 2 + "$schema": "https://opencode.ai/config.json", 3 + "plugin": [ 4 + [ 5 + "oc-plugin-goblin-mode", 6 + { 7 + "enabled": true, 8 + "mode": "append" 9 + } 10 + ] 11 + ] 12 + }
+68
.opencode/themes/goblin-mode.json
··· 1 + { 2 + "$schema": "https://opencode.ai/theme.json", 3 + "defs": { 4 + "moss": "#7CFF4F", 5 + "mossBright": "#B6FF7A", 6 + "mossDim": "#4D9B33", 7 + "mossDark": "#24451F", 8 + "mud": "#0B1208", 9 + "mudPanel": "#101B0D", 10 + "mudElement": "#172613", 11 + "bogBorder": "#2A4A22", 12 + "amber": "#D7B85A" 13 + }, 14 + "theme": { 15 + "primary": { "dark": "moss", "light": "moss" }, 16 + "secondary": { "dark": "mossBright", "light": "mossBright" }, 17 + "accent": { "dark": "amber", "light": "amber" }, 18 + "error": { "dark": "amber", "light": "amber" }, 19 + "warning": { "dark": "amber", "light": "amber" }, 20 + "success": { "dark": "mossBright", "light": "mossBright" }, 21 + "info": { "dark": "moss", "light": "moss" }, 22 + "text": { "dark": "moss", "light": "moss" }, 23 + "textMuted": { "dark": "mossDim", "light": "mossDim" }, 24 + "background": { "dark": "mud", "light": "mud" }, 25 + "backgroundPanel": { "dark": "mudPanel", "light": "mudPanel" }, 26 + "backgroundElement": { "dark": "mudElement", "light": "mudElement" }, 27 + "backgroundMenu": { "dark": "mudElement", "light": "mudElement" }, 28 + "selectedListItemText": { "dark": "mud", "light": "mud" }, 29 + "border": { "dark": "bogBorder", "light": "bogBorder" }, 30 + "borderActive": { "dark": "moss", "light": "moss" }, 31 + "borderSubtle": { "dark": "mudElement", "light": "mudElement" }, 32 + "diffAdded": { "dark": "mossBright", "light": "mossBright" }, 33 + "diffRemoved": { "dark": "amber", "light": "amber" }, 34 + "diffContext": { "dark": "mossDark", "light": "mossDark" }, 35 + "diffHunkHeader": { "dark": "mossDim", "light": "mossDim" }, 36 + "diffHighlightAdded": { "dark": "mossBright", "light": "mossBright" }, 37 + "diffHighlightRemoved": { "dark": "amber", "light": "amber" }, 38 + "diffAddedBg": { "dark": "#0D1D0A", "light": "#0D1D0A" }, 39 + "diffRemovedBg": { "dark": "#1C1608", "light": "#1C1608" }, 40 + "diffContextBg": { "dark": "mudPanel", "light": "mudPanel" }, 41 + "diffLineNumber": { "dark": "mossDark", "light": "mossDark" }, 42 + "diffAddedLineNumberBg": { "dark": "#0A1808", "light": "#0A1808" }, 43 + "diffRemovedLineNumberBg": { "dark": "#171006", "light": "#171006" }, 44 + "markdownText": { "dark": "moss", "light": "moss" }, 45 + "markdownHeading": { "dark": "mossBright", "light": "mossBright" }, 46 + "markdownLink": { "dark": "amber", "light": "amber" }, 47 + "markdownLinkText": { "dark": "amber", "light": "amber" }, 48 + "markdownCode": { "dark": "mossBright", "light": "mossBright" }, 49 + "markdownBlockQuote": { "dark": "mossDim", "light": "mossDim" }, 50 + "markdownEmph": { "dark": "mossBright", "light": "mossBright" }, 51 + "markdownStrong": { "dark": "mossBright", "light": "mossBright" }, 52 + "markdownHorizontalRule": { "dark": "mossDark", "light": "mossDark" }, 53 + "markdownListItem": { "dark": "moss", "light": "moss" }, 54 + "markdownListEnumeration": { "dark": "mossDim", "light": "mossDim" }, 55 + "markdownImage": { "dark": "amber", "light": "amber" }, 56 + "markdownImageText": { "dark": "amber", "light": "amber" }, 57 + "markdownCodeBlock": { "dark": "moss", "light": "moss" }, 58 + "syntaxComment": { "dark": "mossDark", "light": "mossDark" }, 59 + "syntaxKeyword": { "dark": "mossBright", "light": "mossBright" }, 60 + "syntaxFunction": { "dark": "moss", "light": "moss" }, 61 + "syntaxVariable": { "dark": "moss", "light": "moss" }, 62 + "syntaxString": { "dark": "mossDim", "light": "mossDim" }, 63 + "syntaxNumber": { "dark": "amber", "light": "amber" }, 64 + "syntaxType": { "dark": "mossBright", "light": "mossBright" }, 65 + "syntaxOperator": { "dark": "mossDim", "light": "mossDim" }, 66 + "syntaxPunctuation": { "dark": "mossDark", "light": "mossDark" } 67 + } 68 + }
+13
.opencode/tui.json
··· 1 + { 2 + "plugin": [ 3 + [ 4 + "oc-plugin-goblin-mode", 5 + { 6 + "enabled": true, 7 + "set_theme": true, 8 + "sidebar": true, 9 + "tips": true 10 + } 11 + ] 12 + ] 13 + }