vscode: more tweaks

This commit is contained in:
Kate 2024-11-27 11:03:05 -07:00
parent 461207e8c4
commit d514ebb9ac
4 changed files with 32 additions and 3 deletions

16
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// docs: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"label": "NixOS Switch",
"type": "shell",
"command": "sudo nixos-rebuild --flake /home/deprekated/dotfiles?submodules=1 switch",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

View file

@ -176,8 +176,6 @@
./nixos/overlays/fixup-mattermost.nix ./nixos/overlays/fixup-mattermost.nix
./nixos/overlays/yubikey-touch-shitpost ./nixos/overlays/yubikey-touch-shitpost
./nixos/overlays/add-depends-calibre.nix ./nixos/overlays/add-depends-calibre.nix
./nixos/services/clipboard-sync.nix
]; ];
# Modules for all darwin machines. # Modules for all darwin machines.

View file

@ -28,8 +28,9 @@ in
brandonkirbyson.solarized-palenight brandonkirbyson.solarized-palenight
# behavior # behavior
gregoire.dance #gregoire.dance
usernamehw.errorlens usernamehw.errorlens
reykjalin.vscode-kakoune
editorconfig.editorconfig editorconfig.editorconfig
# general add-ons # general add-ons
@ -98,6 +99,13 @@ in
# Default to formatting on save. # Default to formatting on save.
"editor.formatOnSave" = true; "editor.formatOnSave" = true;
# Curosrless: don't show decorations until asked.
"cursorless.showOnStart" = false;
# We have our own accessibility tech -- the VSCode option
# mostly focuses around folks using screen readers.
"editor.accessibilitySupport" = "off";
# #
# Rust # Rust
# #

View file

@ -19,6 +19,13 @@ in
hash = "sha256-gGTpeOQeIQj2ObyC6504+lzLFUS35RNw5z2/isPRpyM="; hash = "sha256-gGTpeOQeIQj2ObyC6504+lzLFUS35RNw5z2/isPRpyM=";
}; };
reykjalin.vscode-kakoune = quickMarketplaceExtension {
name = "vscode-kakoune";
publisher = "reykjalin";
version = "1.3.1";
hash = "sha256-79nINsgLYRdzikcZshubGt7xMDprlJ246zQejrr3vN0=";
};
# #
# Talon-related extensions. # Talon-related extensions.