mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:13:55 -05:00
vsCodium: harmonizen defaults with zed
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
326c6c0db1
commit
a79af705fe
|
@ -11,6 +11,25 @@
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
enableExtensionUpdateCheck = false;
|
enableExtensionUpdateCheck = false;
|
||||||
|
|
||||||
|
keybindings = [
|
||||||
|
{
|
||||||
|
"key" = "alt+e";
|
||||||
|
"command" = "workbench.action.quickOpen";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"key" = "ctrl+p";
|
||||||
|
"command" = "-workbench.action.quickOpen";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"key" = "ctrl+p";
|
||||||
|
"command" = "workbench.action.showCommands";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"key" = "ctrl+shift+p";
|
||||||
|
"command" = "-workbench.action.showCommands";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"diffEditor.ignoreTrimWhitespace" = false;
|
"diffEditor.ignoreTrimWhitespace" = false;
|
||||||
"editor.fontFamily" = "'UbuntuSansMono Nerd Font', 'monospace', monospace";
|
"editor.fontFamily" = "'UbuntuSansMono Nerd Font', 'monospace', monospace";
|
||||||
|
@ -19,6 +38,8 @@
|
||||||
"editor.formatOnSave" = true;
|
"editor.formatOnSave" = true;
|
||||||
"editor.formatOnType" = true;
|
"editor.formatOnType" = true;
|
||||||
"editor.rulers" = [80];
|
"editor.rulers" = [80];
|
||||||
|
"editor.wordWrap" = "wordWrapColumn";
|
||||||
|
"editor.wordWrapColumn" = 80;
|
||||||
"explorer.confirmDelete" = false;
|
"explorer.confirmDelete" = false;
|
||||||
"files.autoSave" = "afterDelay";
|
"files.autoSave" = "afterDelay";
|
||||||
"git.autofetch" = true;
|
"git.autofetch" = true;
|
||||||
|
@ -27,15 +48,23 @@
|
||||||
"nix" = {
|
"nix" = {
|
||||||
"enableLanguageServer" = true;
|
"enableLanguageServer" = true;
|
||||||
"formatterPath" = lib.getExe pkgs.alejandra;
|
"formatterPath" = lib.getExe pkgs.alejandra;
|
||||||
"serverPath" = lib.getExe pkgs.nil;
|
"serverPath" = lib.getExe pkgs.nixd;
|
||||||
|
|
||||||
"serverSettings"."nil" = {
|
"serverSettings" = {
|
||||||
"diagnostics" = {
|
"nil" = {
|
||||||
"ignored" = ["unused_binding" "unused_with"];
|
"diagnostics" = {
|
||||||
|
"ignored" = ["unused_binding" "unused_with"];
|
||||||
|
};
|
||||||
|
|
||||||
|
"formatting" = {
|
||||||
|
"command" = ["${lib.getExe pkgs.alejandra}"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
"formatting" = {
|
"nixd" = {
|
||||||
"command" = ["${lib.getExe pkgs.alejandra}"];
|
"formatting" = {
|
||||||
|
"command" = ["${lib.getExe pkgs.alejandra}"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue