Skip to content

Instantly share code, notes, and snippets.

View iguit0's full-sized avatar

Igor Alves iguit0

View GitHub Profile
@iguit0
iguit0 / startup.sh
Last active March 9, 2025 00:45
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?"
read git_config_user_name
@iguit0
iguit0 / vscode-cfg.json
Last active November 14, 2024 18:57
Current vscode configuration file
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.tabSize": 4,
"editor.fontSize": 16,
"editor.lineHeight": 27,
"editor.fontFamily": "FiraCode Nerd Font",
"editor.fontLigatures": true,
"files.hotExit": "off",
"files.watcherExclude": {
@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"