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
" 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 |
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
--- | |
- 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 |