12 lines
213 B
Nix
12 lines
213 B
Nix
{enable}: {
|
|
inherit enable;
|
|
enableUpdateCheck = false;
|
|
keybindings = [
|
|
{
|
|
key = "alt+a";
|
|
command = "editor.action.commentLine";
|
|
when = "editorTextFocus && !editorReadonly";
|
|
}
|
|
];
|
|
}
|