mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
d6696dac66
Signed-off-by: Azanul <azanulhaque@gmail.com>
78 lines
2.4 KiB
JSON
78 lines
2.4 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.177.0/containers/go
|
|
{
|
|
"name": "oh-my-posh",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"args": {
|
|
// Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.17
|
|
// Append -bullseye or -buster to pin to an OS version.
|
|
// Use -bullseye variants on local arm64/Apple Silicon.
|
|
"VARIANT": "1-1.21-bullseye",
|
|
|
|
// Options:
|
|
"POSH_THEME": "/workspaces/oh-my-posh/themes/jandedobbeleer.omp.json",
|
|
|
|
// Override me with your own timezone:
|
|
"TZ": "UTC",
|
|
// Use one of the "TZ database name" entries from:
|
|
// https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
|
|
"NODE_VERSION": "lts/*",
|
|
//Powershell version
|
|
"PS_VERSION": "7.2.7"
|
|
}
|
|
},
|
|
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"go.toolsManagement.checkForUpdates": "local",
|
|
"go.useLanguageServer": true,
|
|
"go.gopath": "/go",
|
|
"go.goroot": "/usr/local/go",
|
|
"terminal.integrated.profiles.linux": {
|
|
"bash": {
|
|
"path": "bash"
|
|
},
|
|
"zsh": {
|
|
"path": "zsh"
|
|
},
|
|
"fish": {
|
|
"path": "fish"
|
|
},
|
|
"tmux": {
|
|
"path": "tmux",
|
|
"icon": "terminal-tmux"
|
|
},
|
|
"pwsh": {
|
|
"path": "pwsh",
|
|
"icon": "terminal-powershell"
|
|
}
|
|
},
|
|
"terminal.integrated.defaultProfile.linux": "pwsh",
|
|
"terminal.integrated.defaultProfile.windows": "pwsh",
|
|
"terminal.integrated.defaultProfile.osx": "pwsh",
|
|
"tasks.statusbar.default.hide": true
|
|
},
|
|
"extensions": [
|
|
"actboy168.tasks",
|
|
"eamodio.gitlens",
|
|
"tamasfe.even-better-toml",
|
|
"davidanson.vscode-markdownlint",
|
|
"editorconfig.editorconfig",
|
|
"esbenp.prettier-vscode",
|
|
"github.vscode-pull-request-github",
|
|
"golang.go",
|
|
"ms-vscode.powershell",
|
|
"redhat.vscode-yaml",
|
|
"yzhang.markdown-all-in-one",
|
|
"ms-azuretools.vscode-azurefunctions"
|
|
]
|
|
}
|
|
},
|
|
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
"remoteUser": "vscode"
|
|
}
|