add golang extension to vscode

This commit is contained in:
Dmitriy Kholkin 2024-06-19 12:54:36 +03:00
parent a791daade3
commit 92e25958e5
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -64,7 +64,9 @@ in
ext-vscode.pkief.material-icon-theme
ext-vscode.streetsidesoftware.code-spell-checker
ext-vscode.streetsidesoftware.code-spell-checker-russian
ext-vscode.usernamehw.errorlens
ext-vscode.ultram4rine.vscode-choosealicense
ext-vscode.usernamehw.errorlens
ext-vscode.yzhang.markdown-all-in-one
# Rust
ext-vscode.gruntfuggly.todo-tree
@ -75,6 +77,8 @@ in
ext-vscode.tamasfe.even-better-toml
ext-vscode.usernamehw.errorlens
ext-vscode.vadimcn.vscode-lldb
# Golang
ext-vscode.golang.go
];
# mutableExtensionsDir = false;
userSettings = {
@ -112,6 +116,12 @@ in
"git-graph.repository.sign.tags" = true;
"git.autofetch" = false;
"git.enableCommitSigning" = true;
"go.useLanguageServer" = true;
"gopls" = {
"ui.semanticTokens" = true;
"formatting.gofumpt" = true;
"ui.diagnostic.staticcheck" = true;
};
"license.author" = "Dmitriy <ataraxiadev@ataraxiadev.com>";
"license.default" = "mit";
"license.extension" = ".md";