Attention: if you attempt to fork this gist, github will think that you are a spammer and you will have to confirm that you are human with them. Apparantly there are too many links in this list. Also I update it rather frequently (see revisions on the left), so it's probably wise to not fork it anyway.
This file contains 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
Show hidden characters
{ | |
"auto_complete_delay": 1000, | |
"auto_indent": true, | |
"caret_style": "smooth", | |
"color_scheme": "Packages/Phix Mod Color Scheme/Phix Dark.tmTheme", | |
"detect_indentation": true, | |
"detect_slow_plugins": false, | |
"font_face": "consolas", | |
"font_size": 9.0, | |
"highlight_line": true, |
This file contains 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
# Update, upgrade and install development tools: | |
apt-get update | |
apt-get -y upgrade | |
apt-get -y install build-essential git-core curl libssl-dev \ | |
libreadline5 libreadline5-dev \ | |
zlib1g zlib1g-dev \ | |
libmysqlclient-dev \ | |
libcurl4-openssl-dev \ | |
libxslt-dev libxml2-dev |
This file contains 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
vim /etc/network/interfaces | |
auto eth0 | |
iface eth0 inet static | |
address 192.168.0.200 | |
gateway 192.168.0.1 | |
netmask 255.255.255.0 | |
broatcast 192.168.0.255 | |
network 192.168.0.0 |
This file contains 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
set nocompatible | |
source $VIMRUNTIME/vimrc_example.vim | |
source $VIMRUNTIME/mswin.vim | |
behave mswin | |
let g:pathogen_disabled = ['vim-fuzzyfinder', 'vim-tabbar', 'vim-neocomplcache', 'vim-phpfolding', 'vim-neocomplcache', 'vim-neocomplcache-snippets-complete', 'vim-minibufexpl'] | |
"let g:pathogen_disabled = ['vim-fuzzyfinder', 'vim-tabbar', 'vim-minibufexpl'] | |
call pathogen#infect() | |
call pathogen#helptags() |
This file contains 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
# http://www.vxnick.com/blog/2012/04/setting-up-rbenv-globally/ | |
#### begin rbenv configuration #### | |
## Remove these lines if you wish to use your own | |
## clone of rbenv (with your own rubies) | |
export RBENV_ROOT=/usr/local/rbenv | |
export PATH="$RBENV_ROOT/bin:$PATH" | |
eval "$(rbenv init -)" |
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
This file contains 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
set enc=utf-8 | |
setglobal fileencoding=utf-8 | |
set encoding=utf-8 | |
set t_Co=256 | |
set showmatch " show matching bracket (briefly jump) | |
set showmode " show mode in status bar (insert/replace/...) | |
set showcmd " show typed command in status bar | |
set ruler " show cursor position in status bar |
This file contains 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
[...] | |
# | |
# * Fine Tuning | |
# | |
max_connections = 100 | |
connect_timeout = 5 | |
wait_timeout = 600 | |
max_allowed_packet = 16M | |
thread_cache_size = 128 |
This file contains 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
user www-data; | |
worker_processes 2; | |
pid /run/nginx.pid; | |
events { | |
worker_connections 768; | |
multi_accept on; | |
} | |
http { |
OlderNewer