mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
vscode settings
This commit is contained in:
parent
766f545bc0
commit
7d505628db
1 changed files with 8 additions and 1 deletions
|
|
@ -4,6 +4,13 @@
|
||||||
package = pkgs.vscode;
|
package = pkgs.vscode;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
mutableExtensionsDir = false;
|
mutableExtensionsDir = false;
|
||||||
|
keybindings = [
|
||||||
|
{
|
||||||
|
key = "ctrl+[BracketRight]";
|
||||||
|
command = "workbench.action.terminal.focus";
|
||||||
|
when = "terminalProcessSupported";
|
||||||
|
}
|
||||||
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
# Note: In settings.json, `.` in a key is not equivalent to a nested object property.
|
# Note: In settings.json, `.` in a key is not equivalent to a nested object property.
|
||||||
# Language-specific
|
# Language-specific
|
||||||
|
|
@ -34,7 +41,7 @@
|
||||||
"debug.allowBreakpointsEverywhere" = false;
|
"debug.allowBreakpointsEverywhere" = false;
|
||||||
# "editor.fontFamily" = "'Monaspace Neon Var', Arial";
|
# "editor.fontFamily" = "'Monaspace Neon Var', Arial";
|
||||||
"editor.fontLigatures" = true;
|
"editor.fontLigatures" = true;
|
||||||
"terminal.integrated.scrollback" = 20000;
|
"terminal.integrated.scrollback" = 10000;
|
||||||
};
|
};
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
bmalehorn.vscode-fish
|
bmalehorn.vscode-fish
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue