Update more vscode config
This commit is contained in:
parent
61e5fb8bd9
commit
35da74ac8d
2 changed files with 12 additions and 1 deletions
|
@ -54,5 +54,14 @@
|
|||
"suppressResultsExplorerNotice": false,
|
||||
"suppressShowKeyBindingsNotice": true
|
||||
},
|
||||
"gitlens.keymap": "alternate"
|
||||
"gitlens.keymap": "alternate",
|
||||
"editor.cursorBlinking": "smooth",
|
||||
"editor.fontLigatures": true,
|
||||
"editor.smoothScrolling": true,
|
||||
"workbench.editor.enablePreview": false,
|
||||
"terminal.integrated.enableBell": true,
|
||||
"terminal.integrated.fontSize": 14,
|
||||
"terminal.integrated.scrollback": 2000,
|
||||
"git.enableCommitSigning": true,
|
||||
"python.linting.mypyEnabled": true
|
||||
}
|
||||
|
|
|
@ -45,6 +45,7 @@ class config::vscode {
|
|||
file { 'VSCode config':
|
||||
ensure => file,
|
||||
mode => '0644',
|
||||
owner => 'jake',
|
||||
path => '/home/jake/.config/Code/User/settings.json',
|
||||
source => 'puppet:///modules/config/vscode-settings.json'
|
||||
}
|
||||
|
@ -52,6 +53,7 @@ class config::vscode {
|
|||
file { 'VSCode keybindings':
|
||||
ensure => file,
|
||||
mode => '0644',
|
||||
owner => 'jake',
|
||||
path => '/home/jake/.config/Code/User/keybindings.json',
|
||||
source => 'puppet:///modules/config/vscode-keybindings.json'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue