Skip to content

Instantly share code, notes, and snippets.

View eloyvega's full-sized avatar

Eloy Vega Castillo eloyvega

View GitHub Profile
@eloyvega
eloyvega / .zshrc
Last active August 22, 2022 19:32
My configs
ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting autojump)
source $ZSH/oh-my-zsh.sh
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
# ALIASES
alias py=python
alias tf=terraform
alias cleanaws="cat /dev/null > ~/.aws/credentials && cat /dev/null > ~/.aws/config"
@eloyvega
eloyvega / settings.json
Created March 28, 2021 01:00
VSCode settings
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Monokai",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.formatOnSave": true,
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.rendererType": "dom",
"terminal.explorerKind": "external",
@eloyvega
eloyvega / vimrc
Last active March 28, 2021 00:24
" VIM Configuration - Eloy Vega
" Cancel the compatibility with Vi. Essential if you want to enjoy the features of Vim
set nocompatible
" Change Leader key
let mapleader = "\<Space>"
set nobackup
set noswapfile
@eloyvega
eloyvega / README.md
Created November 7, 2019 17:00
Terminal config

Mi configuración de terminal

App

Instalar iTerm2 disponible en este link

Shell

Instalar oh-my-zsh con el siguiente comando:

@eloyvega
eloyvega / README.md
Last active January 22, 2020 23:56
Cloud9-Minikube

Como crear un ambiente de Cloud9 con Minikube

Cloud9

  1. Ve a tu consola de AWS e inicia sesión

  2. Entra al servicio de Cloud9 y crea un nuevo ambiente

![alt text][cloud9]

@eloyvega
eloyvega / 1-cloud9.png
Last active October 30, 2019 22:21
img-cloud9
1-cloud9.png

Keybase proof

I hereby claim:

  • I am eloyvega on github.
  • I am eloyvega (https://keybase.io/eloyvega) on keybase.
  • I have a public key ASCwXwmAymAQW9ooEIa8bajmNgtdoWJ47QeoH0FDE0CitAo

To claim this, I am signing this object:

### Keybase proof
I hereby claim:
* I am eloyvega on github.
* I am eloyvega (https://keybase.io/eloyvega) on keybase.
* I have a public key ASCwXwmAymAQW9ooEIa8bajmNgtdoWJ47QeoH0FDE0CitAo
To claim this, I am signing this object:
@eloyvega
eloyvega / vimrc
Created February 28, 2017 18:41
Vim config
" VIM Configuration - Eloy Vega
" Cancel the compatibility with Vi. Essential if you want to enjoy the features of Vim
set nocompatible
" PATHOGEN
execute pathogen#infect()
" Change Leader key
let mapleader = "\<Space>"
@eloyvega
eloyvega / tmux.conf
Last active February 28, 2017 18:41
tmux config
# Avoid renaming windows with commands
set-option -g allow-rename off
# Use vim keybindings in copy mode
setw -g mode-keys vi
# Faster scrolling
set -g @scroll-speed-num-lines-per-scroll 5
# Setup 'v' to begin selection as in Vim