Skip to content

Instantly share code, notes, and snippets.

View iguit0's full-sized avatar

Igor Alves iguit0

View GitHub Profile
@iguit0
iguit0 / keybindings.json
Last active September 22, 2023 18:18
Visual Studio Code Keybindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "editor.action.duplicateSelection"
@iguit0
iguit0 / vscode-cfg.json
Last active January 15, 2024 18:01
Current vscode configuration file
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.tabSize": 4,
"editor.fontSize": 15,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": true,
"files.hotExit": "off",
"files.watcherExclude": {
@iguit0
iguit0 / startup.sh
Last active February 25, 2024 16:38
My scripts for APT distros
sudo apt-get update
echo 'installing curl'
sudo apt install curl -y
echo 'installing git'
sudo apt install git -y
echo "What name do you want to use in GIT user.name?"
echo "For example, mine will be \"Igor Lucio\""