Bump version

This commit is contained in:
xinyangli 2023-07-22 01:20:55 +08:00
parent 77da044665
commit 5cc78b3494
8 changed files with 68 additions and 53 deletions

View file

@ -4,6 +4,10 @@
settings = {
shell = {
program = config.programs.zellij.package + "/bin/zellij";
args = [
"attach"
"-c"
];
};
font.size = 10.0;
window = {
@ -12,4 +16,4 @@
};
};
};
}
}

View file

@ -29,6 +29,6 @@
home.packages = with pkgs; [
thunderbird
remmina
];
}

View file

@ -20,5 +20,7 @@
neofetch
rclone
clash
inetutils
];
}

View file

@ -28,5 +28,5 @@
colorscheme dracula
'';
};
};
}

View file

@ -2,7 +2,6 @@
programs.zellij = {
enable = true;
settings = {
on_force_close = "quit";
default_shell = "fish";
keybinds = {
unbind = [
@ -26,4 +25,4 @@
};
};
};
}
}

View file

@ -1,5 +1,8 @@
{ config, pkgs, inputs, system, ... }:
{
home.packages = with pkgs; [
pkgs.wl-clipboard-x11
];
programs.vscode = {
enable = true;
enableUpdateCheck = false;
@ -32,11 +35,11 @@
vue.volar
ms-vscode-remote.remote-ssh-edit
]) ++ (with inputs.nixpkgs.legacyPackages.${system}.vscode-extensions; [
mushan.vscode-paste-image
]) ++ (with pkgs.vscode-extensions; [
# Rust
rust-lang.rust-analyzer
mkhl.direnv
github.copilot
]);
userSettings = {
"workbench.colorTheme" = "Default Dark+";
@ -117,17 +120,14 @@
}
];
"[latex]" = {
"editor.formatonpaste" = false;
"editor.suggestselection" = "recentlyusedbyprefix";
"editor.wordwrap" = "bounded";
"editor.wordwrapcolumn" = 100;
"editor.unicodehighlight.allowedlocales" = {
"_os" = true;
"_vscode" = true;
"zh-hans" = true;
"zh-hant" = true;
};
"editor.formatOnPaste" = false;
"editor.suggestSelection" = "recentlyusedbyprefix";
"editor.wordWrap" = "bounded";
"editor.wordWrapColumn" = 80;
"editor.unicodeHighlight.ambiguousCharacters" = false;
};
# Extension vscode-paste-image
"pasteImage.path" = "\${currentFileDir}/.assets";
};
};
}