25 lines
No EOL
385 B
Nix
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";
|
|
# }
|
|
# ];
|
|
};
|
|
} |