Skip to content

Instantly share code, notes, and snippets.

View rpalaciosg's full-sized avatar
coding: { code(), learning(), refactor() }; goto coding;

Richard Palacios G. rpalaciosg

coding: { code(), learning(), refactor() }; goto coding;
View GitHub Profile
@rpalaciosg
rpalaciosg / keybindings.json
Last active March 31, 2024 09:27
My_VSCode_Settings
[
//keybindings generales para simplificar la apariencia de VSCODE
//Quitar activitybar
{
"key": "ctrl+shift+1",
"command": "workbench.action.toggleActivityBarVisibility"
},
//Poner el foco en el side bar del explorador
{
"key": "ctrl+1",
@rpalaciosg
rpalaciosg / docker-compose.yml
Created April 21, 2021 16:51
Instalaccion y configuracion de Gitea y mysql con docker-compose
version: '3'
networks:
gitea:
external: false
volumes:
gitea:
driver: local
@rpalaciosg
rpalaciosg / .zshrc
Last active January 22, 2020 10:26
zsh shell dotfile
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/home/user/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
#ZSH_THEME="robbyrussell"
@rpalaciosg
rpalaciosg / .hyper.js
Last active December 21, 2019 15:48
hyper.js terminal dotfile
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
opacity: 0.5,
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',