This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Set the horiztal and vertial scrolling to inverse of Windows | |
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 } | |
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopHScroll -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopHScroll 1 } | |
// Install Scoop Package Manager | |
set-executionpolicy unrestricted -s cu | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
scoop install curl 7zip git grep touch pshazz openssh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.renderWhitespace": "boundary", | |
"editor.fontSize": 14, | |
"editor.tabSize": 2, | |
"window.zoomLevel": 2, | |
"search.exclude": { | |
"**/.git": true, | |
"dist/**": true, | |
".build/**": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Named Function": { | |
"prefix": "af", | |
"body": [ | |
"function $1($2) {$3}" | |
], | |
"description": "Named Function" | |
}, | |
"Console Log": { | |
"prefix": "lg", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "ctrl+up", "command": "cursorTop" }, | |
{ "key": "ctrl+shift+up", "command": "cursorTopSelect" }, | |
{ "key": "ctrl+down", "command": "cursorBottom" }, | |
{ "key": "ctrl+shift+down", "command": "cursorBottomSelect" }, | |
{ "key": "ctrl+left", "command": "cursorHome" }, | |
{ "key": "ctrl+shift+left", "command": "cursorHomeSelect" }, | |
{ "key": "ctrl+right", "command": "cursorEnd" }, | |
{ "key": "ctrl+shift+right", "command": "cursorEndSelect" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[credential] | |
helper = wincred | |
[core] | |
editor = code --wait | |
[diff] | |
tool = default-difftool | |
[difftool "default-difftool"] | |
cmd = code --wait --diff $LOCAL $REMOTE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<UserSettings><ApplicationIdentity version="14.0"/><ToolsOptions><ToolsOptionsCategory name="Environment" RegisteredName="Environment"/><ToolsOptionsCategory name="TextEditor" RegisteredName="TextEditor"><ToolsOptionsSubCategory name="AllLanguages" RegisteredName="AllLanguages" PackageName="Text Management Package"/><ToolsOptionsSubCategory name="Basic" RegisteredName="Basic" PackageName="Text Management Package"><PropertyValue name="TabSize">4</PropertyValue><PropertyValue name="ShowChanges">true</PropertyValue><PropertyValue name="AutoListMembers">true</PropertyValue><PropertyValue name="ShowPreview">true</PropertyValue><PropertyValue name="ShowMarks">true</PropertyValue><PropertyValue name="IndentStyle">2</PropertyValue><PropertyValue name="ShowCaretPosition">true</PropertyValue><PropertyValue name="HideAdvancedMembers">false</PropertyValue><PropertyValue name="ShowNavigationBar">true</PropertyValue><PropertyValue name="UseMapMode">false</PropertyValue><PropertyValue name="VirtualSpace">false</PropertyValu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Named Function": { | |
"prefix": "af", | |
"body": [ | |
"function $1($2) {$3}" | |
], | |
"description": "Named Function" | |
}, | |
"Console Log": { | |
"prefix": "lg", |