Skip to content

Instantly share code, notes, and snippets.

View mrprompt's full-sized avatar
🏠
Working from home

Thiago Paes mrprompt

🏠
Working from home
View GitHub Profile
@mrprompt
mrprompt / .vimrc
Last active December 15, 2016 22:20
Meu .vimrc
""" Configurações iniciais
set nocompatible " Must come first because it changes other options.
filetype off " Necessary on some Linux distros for pathogen to properly load bundles
" Habilitando o Vundle
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#rc()
@mrprompt
mrprompt / phpci.yml
Created October 18, 2015 01:26
PHPCI Config
build_settings:
clone_depth: 1
verbose: false
ignore:
- "migrations"
- "public"
- "resources"
- "tmp"
- "tests"
- "vendor"
@mrprompt
mrprompt / config.txt
Created December 10, 2016 17:39
Raspberry Pi - melhor performance para VNC em 1366 x 768
# For more options and information see
# http://www.raspberrypi.org/documentation/configuration/config-txt.md
# Some settings may impact device functionality. See link above for details
# uncomment if you get no picture on HDMI for a default "safe" mode
#hdmi_safe=1
# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
#disable_overscan=1
@mrprompt
mrprompt / nginx.conf
Created February 12, 2020 22:07
nginx conf
user www-data;
worker_processes auto;
pid /run/nginx.pid;
worker_rlimit_nofile 100000;
events {
#worker_connections 1024;
worker_connections 10000;
use epoll;