This commit is contained in:
Richard Sperry 2025-04-17 21:36:21 -07:00
parent 5787767699
commit 169656e59f
4 changed files with 35 additions and 4 deletions

View file

@ -18,7 +18,8 @@
"pinage",
"robbyrussell",
"seti",
"uart"
"uart",
"vsda"
]
}
}

View file

@ -44,7 +44,7 @@ RUN apt-get update \
htop \
nano \
npm \
&& npm install -g @vscode/vsce \
&& npm install -g @vscode/vsce vsda \
&& rm -rf /var/lib/apt/lists/*
# npm and vsce allow code-server to check extensions signatures

View file

@ -1,3 +1,4 @@
# File is automatically updated on boot for paths and logging.
bind-addr: 0.0.0.0
port: 1337
auth: none

View file

@ -89,11 +89,40 @@
"telemetry.enableTelemetry": false,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
},
"zsh": {
"path": "/bin/zsh",
"args": [
"-l",
"-i"
]
},
"fish": {
"path": "fish"
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
}
},
"update.mode": "none",
"vsicons.dontShowNewVersionMessage": true,
"vsicons.projectDetection.disableDetect": true,
"workbench.iconTheme": "vs-seti",
"yaml.format.enable": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [80, 88, 100, 120]
"editor.rulers": [
80,
88,
100,
120
]
}