This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#seteamos el prefijo | |
set -g prefix C-a | |
#limpiamos la combinación por defecto | |
unbind C-b | |
#cambiando el delay por default de ejecución de comandos de tmux | |
set -sg escape-time 1 | |
bind C-a send-prefix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Se modifica el archivo en modo adminitrador: | |
~ sudo [nombre_editor] /etc/environment/ | |
y se agregan estas líneas | |
no_proxy="127.0.0.1,localhost" | |
NO_PROXY="127.0.0.1,localhost" | |
all_proxy=socks://172.21.0.83:3128/ | |
ALL_PROXY=socks://172.21.0.83:3128/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. o minuscula = ubica el cursor a la sgte linea listo para escribir osea entra a modo inserción y enfoca al cursor a la linea sgte | |
1.1 O = crea una linea nueva sobre el cursor donde estoy y entra a modo insercion y enfoca el cursor a esa nueva linea. | |
2. :w [ruta_del_archivo] = para guardar un archivo en otra ruta | |
3. h j k l = izquiera, abajo, arriba, derecha | |
4. u: para deshacer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cakefile to document, compile, join and minify CoffeeScript files for | |
# client side apps. Just edit the config object literal. | |
# | |
# -jrmoran | |
fs = require 'fs' | |
{exec, spawn} = require 'child_process' | |
# order of files in `inFiles` is important | |
config = |
NewerOlder