Skip to content

Instantly share code, notes, and snippets.

View jhonbergmann's full-sized avatar
🍉
Focusing

Jhonatan Bergmann jhonbergmann

🍉
Focusing
View GitHub Profile
@jhonbergmann
jhonbergmann / extensions.json
Created May 17, 2024 18:49
VSCode Extensions
[
{
"identifier": {
"id": "vscode.bat"
},
"version": "1.0.0",
"preRelease": false,
"pinned": false
},
{
@jhonbergmann
jhonbergmann / HarlleN.cfg
Created May 17, 2024 18:45
Configuration in (CS1.6)
// This file is overwritten whenever you change your user settings in the game.
// Add custom configurations to the file "userconfig.cfg".
// HarlleN CFG
echo
echo
echo=====================================
echo HarlleN CFG
echo
@jhonbergmann
jhonbergmann / .gitignore
Created May 17, 2024 18:43
Ignoring Files
# OSX
#
.DS_Store
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
module.exports = {
tabWidth: 2,
bracketSpacing: false,
singleQuote: false,
arrowParens: 'always',
semi: false,
jsxBracketSameLine: false,
trailingComma: 'all',
}
@jhonbergmann
jhonbergmann / .editorconfig
Last active May 17, 2024 18:40
EditorConfig
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@jhonbergmann
jhonbergmann / settings.json
Last active May 24, 2024 04:44
VSCode Settings
{
// editor
"editor.fontFamily": "Consolas, 'Courier New', monospace",
"editor.wordWrap": "on",
"editor.fontSize": 15,
"editor.lineHeight": 20,
"editor.tabSize": 2,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.minimap.enabled": false,