Skip to content

Instantly share code, notes, and snippets.

View spxwnmc's full-sized avatar
💀
Docker_Cat

Luis Gerardo spxwnmc

💀
Docker_Cat
View GitHub Profile
MINIMAL XORG
(probado en Debian Testing)
Paquetes:
xserver-xorg-core
xserver-xorg-input-libinput
xserver-xorg-video-fbdev
xserver-xorg-video-[tu tarjeta de video]
xinit
xterm
@spxwnmc
spxwnmc / shortcuts.vim
Created February 6, 2021 16:01
My shortcuts in Neovim
" => Leader nos permite hacer comandos con el espacio
let mapleader=" "
"Abrir ventaba horizontalmente
nmap <Leader>oj :split<CR>
"Abrir ventana verticalmente
nmap <Leader>ol :vsplit<CR>
"Guardar
nmap <Leader>w :w<CR>
@spxwnmc
spxwnmc / OrdenamientoPorInsercion.cpp
Last active December 17, 2020 03:46
Ordenamiento por inserción
/**
* @file OrdenamientoPorInsercion.cpp
* @author Hernández Vázquez Luis Gerardo
* @brief Ordenamiento por inserción
* @date 2020-12-16
*
*
*/
#include <iostream>