Skip to content

Instantly share code, notes, and snippets.

View AlphaLawless's full-sized avatar
⁉️
What's the question?

Alpha Vylly AlphaLawless

⁉️
What's the question?
View GitHub Profile
@AlphaLawless
AlphaLawless / settings.json
Last active August 3, 2022 13:53
My VSCode Settings to Dart
{
// Emmet
"emmet.syntaxProfiles" : {
"javascript" : "jsx"
},
"emmet.includeLanguages" : {
"javascript" : "javascriptreact"
},
// Editor
"editor.minimap.enabled": false,
@AlphaLawless
AlphaLawless / settings.json
Last active August 7, 2023 16:18
My VSCodium Settings Minimal
{
// Emmet
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// Editor
"editor.minimap.enabled": false,
@AlphaLawless
AlphaLawless / Vimrc
Created May 29, 2021 21:09
My vimrc config
"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.