add some vscode extensions and change some vscode settings
This commit is contained in:
parent
2ca09ab51f
commit
3c81523cb0
1 changed files with 8 additions and 2 deletions
|
@ -99,6 +99,10 @@ rec {
|
||||||
# Go
|
# Go
|
||||||
golang.go
|
golang.go
|
||||||
|
|
||||||
|
# Hugo
|
||||||
|
budparr.language-hugo-vscode
|
||||||
|
kaellarkin.hugo-shortcode-syntax
|
||||||
|
|
||||||
# Kotlin
|
# Kotlin
|
||||||
mathiasfrohlich.kotlin
|
mathiasfrohlich.kotlin
|
||||||
|
|
||||||
|
@ -130,6 +134,7 @@ rec {
|
||||||
github.vscode-pull-request-github
|
github.vscode-pull-request-github
|
||||||
|
|
||||||
# Misc - Language Support
|
# Misc - Language Support
|
||||||
|
bradlc.vscode-tailwindcss
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
tamasfe.even-better-toml
|
tamasfe.even-better-toml
|
||||||
jnoortheen.xonsh
|
jnoortheen.xonsh
|
||||||
|
@ -164,6 +169,7 @@ rec {
|
||||||
kshetline.ligatures-limited
|
kshetline.ligatures-limited
|
||||||
|
|
||||||
# Misc - Utilities
|
# Misc - Utilities
|
||||||
|
vasubasraj.flashpost
|
||||||
adpyke.codesnap
|
adpyke.codesnap
|
||||||
exodiusstudios.comment-anchors
|
exodiusstudios.comment-anchors
|
||||||
elypia.magick-image-reader
|
elypia.magick-image-reader
|
||||||
|
@ -358,7 +364,7 @@ rec {
|
||||||
};
|
};
|
||||||
"editor.semanticHighlighting.enabled" = true;
|
"editor.semanticHighlighting.enabled" = true;
|
||||||
"[css]" = {
|
"[css]" = {
|
||||||
"editor.defaultFormatter" = "vscode.css-language-features";
|
"editor.defaultFormatter" = "esbenp.prettier-vscode";
|
||||||
};
|
};
|
||||||
"git.ignoreRebaseWarning" = true;
|
"git.ignoreRebaseWarning" = true;
|
||||||
"remote.autoForwardPortsSource" = "hybrid";
|
"remote.autoForwardPortsSource" = "hybrid";
|
||||||
|
@ -410,7 +416,7 @@ rec {
|
||||||
"editor.defaultFormatter" = "esbenp.prettier-vscode";
|
"editor.defaultFormatter" = "esbenp.prettier-vscode";
|
||||||
};
|
};
|
||||||
"[json]" = {
|
"[json]" = {
|
||||||
"editor.defaultFormatter" = "vscode.json-language-features";
|
"editor.defaultFormatter" = "esbenp.prettier-vscode";
|
||||||
};
|
};
|
||||||
"go.toolsManagement.autoUpdate" = true;
|
"go.toolsManagement.autoUpdate" = true;
|
||||||
"remote.SSH.remotePlatform" = {
|
"remote.SSH.remotePlatform" = {
|
||||||
|
|
Loading…
Reference in a new issue