vscode settings

This commit is contained in:
nora 2024-01-03 18:00:58 +01:00
parent 766f545bc0
commit 7d505628db

View file

@ -4,6 +4,13 @@
package = pkgs.vscode;
enableUpdateCheck = false;
mutableExtensionsDir = false;
keybindings = [
{
key = "ctrl+[BracketRight]";
command = "workbench.action.terminal.focus";
when = "terminalProcessSupported";
}
];
userSettings = {
# Note: In settings.json, `.` in a key is not equivalent to a nested object property.
# Language-specific
@ -34,7 +41,7 @@
"debug.allowBreakpointsEverywhere" = false;
# "editor.fontFamily" = "'Monaspace Neon Var', Arial";
"editor.fontLigatures" = true;
"terminal.integrated.scrollback" = 20000;
"terminal.integrated.scrollback" = 10000;
};
extensions = with pkgs.vscode-extensions; [
bmalehorn.vscode-fish