This file contains hidden or 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 override the defaults | |
| [ | |
| { | |
| "key": "cmd+alt+shift+ctrl+p", | |
| "command": "workbench.action.nextEditorInGroup", | |
| "when": "neovim.init" | |
| }, | |
| { | |
| "key": "cmd+alt+shift+ctrl+o", | |
| "command": "workbench.action.previousEditor", |
This file contains hidden or 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
| { | |
| "editor.fontSize": 15, | |
| "editor.fontFamily": "FiraCode Nerd Font Mono", | |
| "editor.fontLigatures": true, | |
| "editor.tabSize": 4, | |
| "editor.cursorStyle": "line", | |
| "editor.insertSpaces": true, | |
| "editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-", | |
| "editor.semanticHighlighting.enabled": true, | |
| "editor.guides.bracketPairs": true, |
This file contains hidden or 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
| import hashlib | |
| import json | |
| import csv | |
| import random | |
| import numpy as np | |
| import glob | |
| from collections import Counter, defaultdict | |
| from scipy.stats import binom_test | |
| from utils import process_sentence, load_taskmate_data_with_key |
This file contains hidden or 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
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| MaterialTheme: { | |
| theme: 'Darker', | |
| vibrancy: 'ultra-dark' |