{ config, outputs, pkgs, lib, ... }: { home.packages = with pkgs; [ hadolint ]; programs.vscode = { enable = true; enableExtensionUpdateCheck = false; enableUpdateCheck = false; package = pkgs.unstable.vscode; extensions = with pkgs.vscode-extensions; [ # extensions available as nix packages bbenoist.nix github.copilot golang.go hashicorp.terraform ms-kubernetes-tools.vscode-kubernetes-tools ms-vscode-remote.remote-ssh ms-vscode.powershell redhat.vscode-yaml timonwong.shellcheck vscodevim.vim yzhang.markdown-all-in-one ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ # extensions from the vscode marketplace { name = "auto-align"; publisher = "bladnman"; version = "0.0.13"; sha256 = "sha256-N5XMHW6UadKjE29p2vevtjgqLA4QysYu2xT3njmyHLk="; } # copilot chat requires vscode 1.82 # { # name = "copilot-chat"; # publisher = "github"; # version = "0.7.2023081801"; # sha256 = "sha256-4n28k0pqHEluL7mbsTfMMkePfRK5U5MzMNhLTRogoVY="; # } { name = "hadolint"; publisher = "exiasr"; version = "1.1.2"; sha256 = "sha256-6GO1f8SP4CE8yYl87/tm60FdGHqHsJA4c2B6UKVdpgM="; } { name = "hcl"; publisher = "hashicorp"; version = "0.3.2"; sha256 = "sha256-cxF3knYY29PvT3rkRS8SGxMn9vzt56wwBXpk2PqO0mo="; } { name = "jinjahtml"; publisher = "samuelcolvin"; version = "0.20.0"; sha256 = "sha256-wADL3AkLfT2N9io8h6XYgceKyltJCz5ZHZhB14ipqpM="; } { name = "markdown-table-prettify"; publisher = "darkriszty"; version = "3.6.0"; sha256 = "sha256-FZTiNGSY+8xk3DJsTKQu4AHy1UFvg0gbrzPpjqRlECI="; } ]; keybindings = [ { key = "backspace"; command = "-markdown.extension.onBackspaceKey"; when = "editorTextFocus && !editorHasMultipleSelections && !editorReadonly && !markdown.extension.editor.cursor.inFencedCodeBlock && !markdown.extension.editor.cursor.inMathEnv && !suggestWidgetVisible && vim.mode != 'CommandlineInProgress' && vim.mode != 'EasyMotionInputMode' && vim.mode != 'EasyMotionMode' && vim.mode != 'Normal' && vim.mode != 'Replace' && vim.mode != 'SearchInProgressMode' && vim.mode != 'SurroundInputMode' && vim.mode != 'Visual' && vim.mode != 'VisualBlock' && vim.mode != 'VisualLine' && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "ctrl+shift+alt+down"; command = "-markdown.extension.onCopyLineDown"; when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "ctrl+shift+alt+up"; command = "-markdown.extension.onCopyLineUp"; when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "ctrl+enter"; command = "-markdown.extension.onCtrlEnterKey"; when = "editorTextFocus && !editorHasMultipleSelections && !editorReadonly && !markdown.extension.editor.cursor.inFencedCodeBlock && !markdown.extension.editor.cursor.inMathEnv && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "enter"; command = "-markdown.extension.onEnterKey"; when = "editorTextFocus && !editorHasMultipleSelections && !editorReadonly && !markdown.extension.editor.cursor.inFencedCodeBlock && !markdown.extension.editor.cursor.inMathEnv && !suggestWidgetVisible && vim.mode != 'CommandlineInProgress' && vim.mode != 'EasyMotionInputMode' && vim.mode != 'EasyMotionMode' && vim.mode != 'Normal' && vim.mode != 'Replace' && vim.mode != 'SearchInProgressMode' && vim.mode != 'SurroundInputMode' && vim.mode != 'Visual' && vim.mode != 'VisualBlock' && vim.mode != 'VisualLine' && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "ctrl+]"; command = "-markdown.extension.onIndentLines"; when = "editorTextFocus && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "alt+down"; command = "-markdown.extension.onMoveLineDown"; when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "alt+up"; command = "-markdown.extension.onMoveLineUp"; when = "editorTextFocus && !editorReadonly && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "ctrl+["; command = "-markdown.extension.onOutdentLines"; when = "editorTextFocus && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "shift+enter"; command = "-markdown.extension.onShiftEnterKey"; when = "editorTextFocus && !editorHasMultipleSelections && !editorReadonly && !markdown.extension.editor.cursor.inFencedCodeBlock && !markdown.extension.editor.cursor.inMathEnv && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "shift+tab"; command = "-markdown.extension.onShiftTabKey"; when = "editorTextFocus && markdown.extension.editor.cursor.inList && !editorHasMultipleSelections && !editorReadonly && !editorTabMovesFocus && !hasOtherSuggestions && !hasSnippetCompletions && !inSnippetMode && !markdown.extension.editor.cursor.inFencedCodeBlock && !markdown.extension.editor.cursor.inMathEnv && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } { key = "tab"; command = "-markdown.extension.onTabKey"; when = "editorTextFocus && markdown.extension.editor.cursor.inList && !editorHasMultipleSelections && !editorReadonly && !editorTabMovesFocus && !hasOtherSuggestions && !hasSnippetCompletions && !inSnippetMode && !inlineSuggestionVisible && !markdown.extension.editor.cursor.inFencedCodeBlock && !markdown.extension.editor.cursor.inMathEnv && !suggestWidgetVisible && editorLangId =~ /^markdown$|^rmd$|^quarto$/"; } ]; userSettings = { "autoalign.moveableItems" = [ "=" ":" "+=" "-=" ]; "autoalign.nonMoveableItemsAdditional" = [ "ks=" "ds=" ]; "diffEditor.ignoreTrimWhitespace" = false; "editor.acceptSuggestionOnCommitCharacter" = false; "editor.acceptSuggestionOnEnter" = "off"; "editor.detectIndentation" = false; "editor.inlineSuggest.enabled" = true; "editor.lineNumbers" = "relative"; "editor.renderControlCharacters" = true; "editor.renderWhitespace" = "all"; "editor.tabCompletion" = "off"; "editor.tabSize" = 2; "explorer.confirmDragAndDrop" = false; "extensions.autoCheckUpdates" = false; "files.hotExit" = "onExitAndWindowClose"; "files.trimTrailingWhitespace" = true; "git.confirmSync" = false; "git.ignoreLegacyWarning" = true; "github.copilot.enable" = { "*" = true; "plaintext" = true; "markdown" = true; "scminput" = false; "yaml" = true; }; "powershell.codeFormatting.useCorrectCasing" = true; "powershell.powerShellAdditionalExePaths" = { "pwsh" = "${config.home.homeDirectory}/.nix-profile/bin/pwsh"; }; "powershell.promptToUpdatePowerShell" = false; "security.workspace.trust.untrustedFiles" = "open"; "update.mode" = "none"; "vim.normalModeKeyBindings" = [ { "after" = ["@q"]; "before" = ["Q"]; } ]; "vim.statusBarColorControl" = true; "vim.useCtrlKeys" = false; "window.restoreWindows" = "none"; "workbench.colorCustomizations" = { "statusBar.background" = "#005f5f"; "statusBar.debuggingBackground" = "#005f5f"; "statusBar.noFolderBackground" = "#005f5f"; }; "workbench.startupEditor" = "none"; }; }; }