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
snippet [ | |
[${1:label}](${2:location}) | |
snippet ![ | |
![${1:label}](${2:location}) | |
snippet r | |
```{r} | |
${0} | |
``` |
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
snippet lib | |
library(${1:package}) | |
snippet req | |
require(${1:package}) | |
snippet src | |
source("${1:file.R}") | |
snippet ret |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<sizer> | |
<options showIconInTray="1" startInSafeMode="0" adjustOppositeEdge="0" tooltipOption="1" hotKey="90" hotKeyModifiers="10" hotKeyExtended="0" useDwmExtendedFrames="1"/> | |
<menu> | |
<resize description="1584 x 2160 Right" hotKey="39" hotKeyModifiers="9" hotKeyExtended="1" width="1584" height="2160" relocate="6" monitor="-2" top="" left="" noresize="0" relocateCoords="1"/> | |
<resize description="2160 x 2160 Left" hotKey="37" hotKeyModifiers="9" hotKeyExtended="1" width="2160" height="2160" relocate="4" monitor="-2" top="" left="" noresize="0" relocateCoords="1"/> | |
<resize description="TwoThirdsLeft" hotKey="37" hotKeyModifiers="3" hotKeyExtended="1" width="2498" height="2160" relocate="4" monitor="-2" top="" left="" noresize="0" relocateCoords="1"/> | |
<resize description="TwoThirdsRight" hotKey="39" hotKeyModifiers="3" hotKeyExtended="1" width="2498" height="2160" relocate="6" monitor="-2" top="" left="" noresize="0" relocateCoords="1"/> | |
<resize de |
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
rem Windows batch file adding file extensions to use the text previewer in Windows Explorer and Outlook (and other programs) | |
for %%x in ( | |
.do | |
.ado | |
.log | |
.smcl | |
.rmd | |
.md | |
.markdown |
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
Capslock::Shift |
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
; Uncomment to monitor which key has been pressed (when running script but not compiled script) | |
; #InstallKeybdHook | |
; Press ` (accent grave/backtick) to move up a folder in Explorer in Windows 10 (on an ISO UK keyboard) | |
#IfWinActive ahk_class CabinetWClass | |
SC029:: | |
SendInput, {LAlt down} | |
sleep, 1 | |
SendInput, {Up} | |
sleep, 1 |
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
Capslock::` | |
+Capslock::~ |
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
Capslock::Shift | |
+Capslock::Send, % Chr(163) |
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
{ | |
"workbench.sideBar.location": "right", | |
"workbench.iconTheme": "vscode-icons", | |
"editor.fontFamily": "Fira Code Light", | |
"editor.fontLigatures": true, | |
"latex-workshop.view.pdf.viewer": "tab", | |
"editor.minimap.enabled": false, | |
"editor.wordWrap": "on", | |
"breadcrumbs.enabled": true, | |
"editor.fontSize": 11, |
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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"confirmCloseAllTabs": false, | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", |
OlderNewer