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
{ | |
// Emmet | |
"emmet.syntaxProfiles" : { | |
"javascript" : "jsx" | |
}, | |
"emmet.includeLanguages" : { | |
"javascript" : "javascriptreact" | |
}, | |
// Editor | |
"editor.minimap.enabled": false, |
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
{ | |
// Emmet | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
// Editor | |
"editor.minimap.enabled": false, |
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
"INDENTION OPTIONS// | |
set autoindent " New lines inherit the indentation of previous lines. | |
set expandtab " Convert tabs to spaces. | |
set shiftround " When shifting lines, round the indentation to the nearest multiple of shiftwidth. | |
set shiftwidth=2 " When shifting, indent using two spaces. | |
set smarttab " Insert tabstop number of spaces when the tab key is pressed. | |
set tabstop=2 " Insert using 2 spaces. | |
filetype plugin indent on " Enable indentation rules that are file-type specific. |