Add vscode keyboard shortcuts file
This commit is contained in:
parent
8c0258e811
commit
f1040efe3c
2 changed files with 25 additions and 0 deletions
18
modules/config/files/vscode-keybindings.json
Normal file
18
modules/config/files/vscode-keybindings.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"key": "alt+right",
|
||||||
|
"command": "workbench.action.nextEditor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+pagedown",
|
||||||
|
"command": "-workbench.action.nextEditor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "alt+left",
|
||||||
|
"command": "workbench.action.previousEditor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+pageup",
|
||||||
|
"command": "-workbench.action.previousEditor"
|
||||||
|
}
|
||||||
|
]
|
|
@ -46,4 +46,11 @@ class config::vscode {
|
||||||
path => '/home/jake/.config/Code/User/settings.json',
|
path => '/home/jake/.config/Code/User/settings.json',
|
||||||
source => 'puppet:///modules/config/vscode-settings.json'
|
source => 'puppet:///modules/config/vscode-settings.json'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
file { 'VSCode keybindings':
|
||||||
|
ensure => file,
|
||||||
|
mode => '0644',
|
||||||
|
path => '/home/jake/.config/Code/User/keybindings.json',
|
||||||
|
source => 'puppet:///modules/config/vscode-keybindings.json'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue