add borgmatic darwin module

This commit is contained in:
Lucy Hochkamp 2023-10-23 16:05:01 +02:00
parent 323d7fc16b
commit b0871baea6
No known key found for this signature in database
3 changed files with 102 additions and 2 deletions

View file

@ -37,11 +37,14 @@ in
ms-dotnettools.csharp # c# und so
rust-lang.rust-analyzer # rust
marketplace.sswg.swift-lang # swift
marketplace.vadimcn.vscode-lldb # swift
marketplace.ms-toolsai.jupyter # jupiter notebooks
marketplace.jakebecker.elixir-ls # elixir
marketplace.dart-code.flutter # dart/flutter
marketplace.dart-code.dart-code # dart/flutter
marketplace.alexisvt.flutter-snippets # flutter snippets
marketplace.tauri-apps.tauri-vscode # tauri
marketplace.dbaeumer.vscode-eslint # js
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
];
@ -88,6 +91,11 @@ in
"commands" = [ "editor.action.sourceAction" ];
quiet = true;
}
{
before = [ "<leader>" "r" "n" ];
"commands" = [ "editor.action.rename" ];
quiet = true;
}
{
before = [ "<leader>" "c" "f" ];
"commands" = [ "editor.action.quickFix" ];
@ -108,6 +116,11 @@ in
"commands" = [ "editor.action.marker.prev" ];
quiet = true;
}
{
before = [ "<leader>" "g" "r" ];
"commands" = [ "editor.action.goToReferences" ];
quiet = true;
}
{
before = [ "<Tab>" ];
"commands" = [ "workbench.view.explorer" ];
@ -157,6 +170,10 @@ in
# "preview" = { "html" = { defaults = {}; options = []; }; };
# };
#};
# swift
"lldb.library" = "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB";
"lldb.launch.expressions" = "native";
};
};