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
{ | |
"React Boilerplate": { | |
"prefix": ["react-functional"], | |
"body": "import React from 'react';\nimport ReactDOM from 'react-dom';\n\nconst App = () => {\n\t$0\n}\n\nReactDOM.render(\n\t<App />,\n\tdocument.querySelector('#root')\n)", | |
"description": "React app boilerplate with a functional component." | |
} | |
} |
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
// This should probably be inserted into | |
// $HOME/.config/Code/User/keybindings.json (Linux) or | |
// %APPDATA%\Code\User\keybindings.json (Windows) | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+`", |
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
colorscheme molokai | |
set guifont=DejaVu_Sans_Mono_for_Powerline:h10:cANSI | |
set columns=140 | |
set lines=35 | |
set guitablabel=%N\ %M%f |
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
set shell=cmd | |
set shellcmdflag=/c | |
execute pathogen#infect() | |
Helptags | |
map <C-O> :FufFile<CR> | |
noremap <F4> :TlistToggle<Enter> | |
let Tlist_Exit_OnlyWindow = 1 |