mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 02:31:34 +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",
|
||||
"robbyrussell",
|
||||
"seti",
|
||||
"uart"
|
||||
"uart",
|
||||
"vsda"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# File is automatically updated on boot for paths and logging.
|
||||
bind-addr: 0.0.0.0
|
||||
port: 1337
|
||||
auth: none
|
||||
|
|
|
@ -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
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue