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
var spawn = require('child_process').spawn, | |
createSpawn = function(command) { | |
var cmd = spawn(command, []); | |
try { | |
console.log('running command: ' + command); | |
cmd.stdout.on('data', function(data){ | |
process.stdout.write(data); | |
}); | |
cmd.stderr.on('data', function(data) { | |
// process.stdout.write('ERROR:' + data); |
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 settings in this file to overwrite the default settings | |
{ | |
"vim.textwidth": 120, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"files.autoSave": "onFocusChange", | |
"files.autoSaveDelay": 3000, | |
"editor.tabSize": 2, |
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
[ | |
{"key": "alt+a","command": "workbench.action.showCommands"}, | |
{"key": "cmd+'","command": "workbench.action.showCommands"}, | |
{ | |
"key": "cmd+`", | |
"command": "workbench.action.terminal.focus", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "cmd+r", |
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
{ | |
/* | |
Just some basic elixir snippets for vsCode. This file should be named elixir.json | |
*/ | |
"defmacro": { | |
"prefix": "defmac", | |
"body": [ | |
"defmacro ${1:module_name} do", | |
"$0", | |
"end" |