I hereby claim:
- I am GerardoHP on github.
- I am gerardohp (https://keybase.io/gerardohp) on keybase.
- I have a public key whose fingerprint is 279A 4656 94D5 470F 8C21 4A89 859E 9867 714F 3316
To claim this, I am signing this object:
{ | |
"final_space": true, | |
"console_title": true, | |
"console_title_style": "folder", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"horizontal_offset": 0, | |
"vertical_offset": 0, |
using namespace System.Management.Automation | |
using namespace System.Management.Automation.Language | |
if ($host.Name -eq 'ConsoleHost') | |
{ | |
Import-Module PSReadLine | |
} | |
#Import-Module PSColors | |
#Import-Module posh-git | |
Import-Module -Name Terminal-Icons |
cd /c/Users/ghern/source/repos/bn3/bn3-backend-${1} | |
current_branch=$(git branch --show-current) | |
branches_to_delete=$(git branch -l | grep -v "dev" | grep -v "release/1.0.0" | grep -v $current_branch) | |
for branch in $branches_to_delete; do | |
git branch -D ${branch} | |
done |
I hereby claim:
To claim this, I am signing this object:
# If you prefer the allow list template instead of the deny list, see community template: | |
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore | |
# | |
# Binaries for programs and plugins | |
*.exe | |
*.exe~ | |
*.dll | |
*.so | |
*.dylib |
#!/bin/sh | |
open -na Rider.app --args "$@" |
#!/bin/sh | |
open -na Goland.app --args "$@" |
#!/bin/sh | |
# Find the module file of go | |
if find go.mod | |
then | |
# Change to the structure | |
if cd $1 | |
then | |
echo "package $1" >> "$2.go" | |
echo "package $1_test" >> "$2_test.go" |
[core] | |
editor = code --new-window --wait | |
[alias] | |
egc = config --global --edit | |
elc = config --local --edit | |
esc = config --system --edit | |
st = status | |
ss = st --short | |
co = checkout | |
sw = switch |
-- Configuraciones básicas de Vim traducidas a Lua | |
vim.opt.number = true -- Habilita números de línea | |
vim.opt.relativenumber = true -- Habilita números de línea relativos | |
vim.opt.ruler = true -- Habilita la regla (muestra la posición del cursor) | |
vim.opt.autoindent = true -- Habilita la indentación automática | |
vim.opt.expandtab = true -- Convierte tabs en espacios | |
vim.opt.tabstop = 2 -- Establece el ancho de un tab en 2 espacios | |
vim.opt.shiftwidth = 2 -- Establece el ancho de la indentación en 2 espacios | |
-- Definir el <leader> como la coma |