mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-07 04:31:24 +00:00
devenv
This commit is contained in:
parent
5787767699
commit
169656e59f
4 changed files with 35 additions and 4 deletions
|
@ -18,7 +18,8 @@
|
||||||
"pinage",
|
"pinage",
|
||||||
"robbyrussell",
|
"robbyrussell",
|
||||||
"seti",
|
"seti",
|
||||||
"uart"
|
"uart",
|
||||||
|
"vsda"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,7 @@ RUN apt-get update \
|
||||||
htop \
|
htop \
|
||||||
nano \
|
nano \
|
||||||
npm \
|
npm \
|
||||||
&& npm install -g @vscode/vsce \
|
&& npm install -g @vscode/vsce vsda \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
# npm and vsce allow code-server to check extensions signatures
|
# npm and vsce allow code-server to check extensions signatures
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# File is automatically updated on boot for paths and logging.
|
||||||
bind-addr: 0.0.0.0
|
bind-addr: 0.0.0.0
|
||||||
port: 1337
|
port: 1337
|
||||||
auth: none
|
auth: none
|
||||||
|
|
|
@ -89,11 +89,40 @@
|
||||||
"telemetry.enableTelemetry": false,
|
"telemetry.enableTelemetry": false,
|
||||||
"terminal.integrated.copyOnSelection": true,
|
"terminal.integrated.copyOnSelection": true,
|
||||||
"terminal.integrated.shell.linux": "/usr/bin/zsh",
|
"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",
|
"update.mode": "none",
|
||||||
"vsicons.dontShowNewVersionMessage": true,
|
"vsicons.dontShowNewVersionMessage": true,
|
||||||
"vsicons.projectDetection.disableDetect": true,
|
"vsicons.projectDetection.disableDetect": true,
|
||||||
"workbench.iconTheme": "vs-seti",
|
"workbench.iconTheme": "vs-seti",
|
||||||
"yaml.format.enable": true,
|
"yaml.format.enable": true,
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||||
"editor.rulers": [80, 88, 100, 120]
|
"editor.rulers": [
|
||||||
|
80,
|
||||||
|
88,
|
||||||
|
100,
|
||||||
|
120
|
||||||
|
]
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue