Skip to content

Instantly share code, notes, and snippets.

" Save as conceal.vim at ~/.vim/bundle/ruby-conceal/after/syntax/ruby if you
" use Pathogen or at ~/.vim/after/syntax/ruby otherwise
if !has('conceal')
finish
endif
syntax keyword rubyControl not conceal cchar=¬
syntax keyword rubyKeyword lambda conceal cchar=λ
set conceallevel=2
@frnz
frnz / ssh_key.sh
Created October 31, 2010 08:49 — forked from jpablobr/ssh_key.sh
#!/bin/bash
scp ~/.ssh/id_rsa.pub $1:~
ssh $1 "mkdir -p ~/.ssh && touch ~/.ssh/authorized_keys && chmod 700 ~/.ssh && chmod -R 600 ~/.ssh/* && cat ~/id_rsa.pub >> ~/.ssh/authorized_keys && rm ~/id_rsa.pub"
# Guide
# Configure the essential configurations below and do the following:
#
# Repository Creation:
# cap deploy:repository:create
# git add .
# git commit -am "initial commit"
# git push origin master
#
# Initial Deployment: