Skip to content

Instantly share code, notes, and snippets.

View vhsenna's full-sized avatar

Victor Senna vhsenna

View GitHub Profile
@vhsenna
vhsenna / init-project.sh
Created September 6, 2024 21:27
Bash script for setting up a Python project with Poetry and essential tools
#!/bin/bash
# Define project name
PROJECT_NAME="my-project"
# Define the path to the project folder
PROJECT_PATH="$HOME/Dev"
###
@vhsenna
vhsenna / settings.json
Last active April 27, 2025 19:55
vscode settings
{
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features", // "esbenp.prettier-vscode"
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"[django-html]": {
"editor.defaultFormatter": "HookyQR.beautify", // DEPRECATED
"editor.detectIndentation": true,