flake update and vscode improvements

This commit is contained in:
Salar Rahmanian 2024-08-10 22:41:29 -07:00
parent e4a817cce6
commit 57baa8ac77
2 changed files with 25 additions and 15 deletions

View file

@ -42,11 +42,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1722813957, "lastModified": 1723175592,
"narHash": "sha256-IAoYyYnED7P8zrBFMnmp7ydaJfwTnwcnqxUElC1I26Y=", "narHash": "sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cb9a96f23c491c081b38eab96d22fa958043c9fa", "rev": "5e0ca22929f3342b19569b21b2f3462f053e497b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -58,11 +58,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1723096977, "lastModified": 1723307312,
"narHash": "sha256-/OFbSpsjIl+b5ECPKz7anD/Q8EGFCOIjG9w9NIV61Gk=", "narHash": "sha256-UcvsWK+vM/Cc8lGlqDpSa+75hAQY0LWa6n06VpVZCGQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nur", "repo": "nur",
"rev": "27f59822c315763c64b55fb12f862a54df79b929", "rev": "0572e827f7bde034f478125ea5a932ff32715616",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -242,18 +242,28 @@
yzhang.markdown-all-in-one yzhang.markdown-all-in-one
]; ];
userSettings = { userSettings = {
editor.fontFamily = "SF Mono"; "editor.fontFamily" = "SF Mono";
editor.fontSize = 13; "editor.fontSize" = 13;
editor.copyWithSyntaxHighlighting = true; "editor.copyWithSyntaxHighlighting" = true;
telemetry.enableTelemetry = false;
workbench.colorTheme = "Tokyo Night";
workbench.iconTheme = "vscode-icons";
workbench.sideBar.location = "right";
"githubPullRequests.pullBranch" = "never";
"markdown.extension.preview.autoShowPreviewToSide" = true;
"extensions.experimental.affinity" = { "extensions.experimental.affinity" = {
"asvetliakov.vscode-neovim" = 1; "asvetliakov.vscode-neovim" = 1;
}; };
"files.autoSave" = "afterDelay";
"git.autoSave" = "afterDelay";
"git.rebaseWhenSync" = true;
"github.gitProtocol" = "ssh";
"githubPullRequests.notifications" = "pullRequests";
"githubPullRequests.pullBranch" = "never";
"markdown.extension.preview.autoShowPreviewToSide" = true;
# Install paste image manually as not in nix ( https://marketplace.visualstudio.com/items?itemName=mushan.vscode-paste-image )
"pasteImage.insertPattern" = "![[\${imageFileName}]]";
"pasteImage.path" = "\${projectRoot}/Attachments";
"python.analysis.extraPaths" = [ "src" ];
"telemetry.telemetryLevel" = "off";
"window.openFoldersInNewWindow" = "on";
"workbench.colorTheme" = "Tokyo Night";
"workbench.iconTheme" = "vscode-icons";
"workbench.sideBar.location" = "right";
}; };
}; };