nixos-private-dots/modules/home-manager/gui/vscode.nix
2024-08-05 06:31:12 +03:00

25 lines
No EOL
385 B
Nix

{
programs.vscode = {
enable = true;
extensions = [
];
userSettings = {
"editor.fontFamily" = "JetBrainsMono Nerd Font";
};
globalSnippets = {};
languageSnippets = {};
# keybindings = [
# {
# key = "ctrl+c";
# command = "editor.action.clipboardCopyAction";
# when = "textInputFocus";
# }
# ];
};
}