This commit is contained in:
Leon Liu 2024-12-26 01:47:00 +09:00
parent f827809ca2
commit a8dd01c35a
2 changed files with 13 additions and 1 deletions

View File

@ -125,7 +125,11 @@
nix-direnv.enable = true; nix-direnv.enable = true;
enableZshIntegration = true; enableZshIntegration = true;
}; };
prograsm.wezterm = {
enable = true;
enableZshIntegration = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
programs.vscode = { programs.vscode = {
enable = true; enable = true;
extensions = [ extensions = [
@ -135,6 +139,14 @@
userSettings = { userSettings = {
"window.zoomLevel" = 2; "window.zoomLevel" = 2;
"editor.fontFamily" = "mononoki"; "editor.fontFamily" = "mononoki";
"[dart]" = {
"editor.formatOnSave" = true;
"editor.formatOnType" = true;
"editor.rulers" = [ 80 ];
"editor.selectionHighlight" = false;
"editor.tabCompletion" = "onlySnippets";
"editor.wordBasedSuggestions" = "off";
};
}; };
}; };
programs.helix = { programs.helix = {

0
wezterm.lua Normal file
View File