Skip to content

Commit 68e1f3d

Browse files
committed
settings for vscode
1 parent 43aee87 commit 68e1f3d

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"denoland.vscode-deno"
4+
]
5+
}

.vscode/settings.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#ab307e",
4+
"activityBar.background": "#ab307e",
5+
"activityBar.foreground": "#e7e7e7",
6+
"activityBar.inactiveForeground": "#e7e7e799",
7+
"activityBarBadge.background": "#25320e",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#e7e7e799",
10+
"sash.hoverBorder": "#ab307e",
11+
"statusBar.background": "#832561",
12+
"statusBar.foreground": "#e7e7e7",
13+
"statusBarItem.hoverBackground": "#ab307e",
14+
"statusBarItem.remoteBackground": "#832561",
15+
"statusBarItem.remoteForeground": "#e7e7e7",
16+
"titleBar.activeBackground": "#832561",
17+
"titleBar.activeForeground": "#e7e7e7",
18+
"titleBar.inactiveBackground": "#83256199",
19+
"titleBar.inactiveForeground": "#e7e7e799"
20+
},
21+
"peacock.color": "#832561",
22+
"deno.enable": true,
23+
"deno.lint": true,
24+
"deno.config": "../deno.jsonc",
25+
"editor.formatOnSave": true,
26+
"[typescript]": {
27+
"editor.defaultFormatter": "denoland.vscode-deno"
28+
},
29+
"[typescriptreact]": {
30+
"editor.defaultFormatter": "denoland.vscode-deno"
31+
},
32+
"debug.javascript.defaultRuntimeExecutable": {
33+
"pwa-node": "/Users/thomas.roche/.local/share/mise/shims/node"
34+
},
35+
"deno.path": "/Users/thomas.roche/.local/share/mise/shims/deno"
36+
}

git-mirror.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/usr/bin/env -S deno run --allow-env --allow-read --allow-write --allow-run
2+
import { colors } from "jsr:@cliffy/ansi@^1.0.0-rc.7/colors";
23
import { Command } from "jsr:@cliffy/command@^1.0.0-rc.7";
34
import { Confirm } from "jsr:@cliffy/[email protected]/confirm";
45
import { exists } from "jsr:@std/fs";
5-
// import colors from "npm:colors";
6-
import { colors } from "jsr:@cliffy/ansi@^1.0.0-rc.7/colors";
76
import { HOME_DIR } from "./utils/constants.ts";
87
import {
98
cloneRepo,

0 commit comments

Comments
 (0)