Skip to content

Instantly share code, notes, and snippets.

View tomster's full-sized avatar
💭
no space left on device

Tom Lazar tomster

💭
no space left on device
View GitHub Profile
@seyDoggy
seyDoggy / let g:ctrlp_custom_ignore
Created December 3, 2014 14:02
Getting around spf13-vim's ctrlp_user_command in order to set ctrlp_custom_ignore
" The custom ignore feature in ctrlp.vim is a useful feature
" when you want to ignore files and folder in your directory
" structure. However if yo set g:ctrlp_user_command then
" g:ctrlp_custom_ignore had no effect. This is all well and
" and good unless you use a vim distribution like spf13-vim
" that just so happens to set g:ctrlp_user_command. So here
" is how you get around that issue in your own .vimrc.local:
"
" unlet the original spf13-vim settings
unlet g:ctrlp_custom_ignore
@illenseer
illenseer / site.yml
Created August 30, 2013 14:21
Playbook to get all prerequest for ansible installed on FreeBSD.
---
- hosts: freebsd
gather_facts: false
user: root
tasks:
- name: install pkgng
raw: "pkg_info | grep -v 'pkg-' > /dev/null ; if $? then pkg_add -r pkg; pkg2ng; echo 'WITH_PKGNG=yes' >> /etc/make.conf; echo 'packagesite: <your_pkg_mirror>' >> /usr/local/etc/pkg.conf; pkg update; endif"
- name: install python27
raw: pkg install -y python27
- name: add ansible ssh-key