mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 04:42:17 +00:00
189 lines
8 KiB
Nix
189 lines
8 KiB
Nix
{ 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
|
|
tamasfe.even-better-toml
|
|
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=";
|
|
}
|
|
{
|
|
name = "copilot-chat";
|
|
publisher = "github";
|
|
version = "0.11.2023110202";
|
|
sha256 = "sha256-q+WWhb5hDv1J/v996gLPozC9Yc7hvAnRvvzYQxBNeVQ=";
|
|
}
|
|
{
|
|
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=";
|
|
}
|
|
{
|
|
name = "vscode-tailscale";
|
|
publisher = "tailscale";
|
|
version = "1.0.0";
|
|
sha256 = "sha256-MKiCZ4Vu+0HS2Kl5+60cWnOtb3udyEriwc+qb/7qgUg=";
|
|
}
|
|
];
|
|
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" = "on";
|
|
"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" = false;
|
|
"scminput" = false;
|
|
"yaml" = true;
|
|
};
|
|
"go.toolsManagement.checkForUpdates" = "local";
|
|
"html.autoClosingTags" = false;
|
|
"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" = false;
|
|
"vim.useCtrlKeys" = false;
|
|
"window.restoreWindows" = "none";
|
|
"workbench.startupEditor" = "none";
|
|
};
|
|
};
|
|
}
|
|
|