Guest User

Untitled

a guest
Nov 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.38 KB | None | 0 0
  1. remote_directory "#{ENV['HOME']}/.vim" do
  2. source "vim"
  3. end
  4.  
  5. sadie:~/Documents/projects/LeopardTamer/cookbooks/dotfiles(master) gmcinnes$ tree
  6. .
  7. ├── README.rdoc
  8. ├── files
  9. │   └── default
  10. │   └── vim
  11. │   ├── autoload
  12. │   │   └── pathogen.vim
  13. │   └── bundle
  14. │   ├── command-t
  15. │   │   ├── Gemfile
  16. │   │   ├── Gemfile.lock
  17. │   │   ├── LICENSE
  18. │   │   ├── Makefile
  19. │   │   ├── README.txt -> doc/command-t.txt
  20. │   │   ├── Rakefile
  21. │   │   ├── bin
  22. │   │   │   ├── autospec
  23. │   │   │   ├── htmldiff
  24. │   │   │   ├── ldiff
  25. │   │   │   ├── nokogiri
  26. │   │   │   ├── rake
  27. │   │   │   └── rspec
  28. │   │   ├── command-t
  29. │   │   ├── command-t.gemspec
  30. │   │   ├── compile-test.sh
  31. │   │   ├── doc
  32. │   │   │   └── command-t.txt
  33. │   │   ├── fixtures
  34. │   │   │   ├── bar
  35. │   │   │   │   ├── abc
  36. │   │   │   │   └── xyz
  37. │   │   │   ├── baz
  38. │   │   │   ├── bing
  39. │   │   │   └── foo
  40. │   │   │   ├── alpha
  41. │   │   │   │   ├── t1
  42. │   │   │   │   └── t2
  43. │   │   │   └── beta
  44. │   │   ├── multi-spec.sh
  45. │   │   ├── plugin
  46. │   │   │   └── command-t.vim
  47. │   │   ├── ruby
  48. │   │   │   └── command-t
  49. │   │   │   ├── Makefile
  50. │   │   │   ├── controller.rb
  51. │   │   │   ├── depend
  52. │   │   │   ├── ext.bundle
  53. │   │   │   ├── ext.c
  54. │   │   │   ├── ext.h
  55. │   │   │   ├── ext.o
  56. │   │   │   ├── extconf.rb
  57. │   │   │   ├── finder
  58. │   │   │   │   ├── buffer_finder.rb
  59. │   │   │   │   └── file_finder.rb
  60. │   │   │   ├── finder.rb
  61. │   │   │   ├── match.c
  62. │   │   │   ├── match.h
  63. │   │   │   ├── match.o
  64. │   │   │   ├── match_window.rb
  65. │   │   │   ├── matcher.c
  66. │   │   │   ├── matcher.h
  67. │   │   │   ├── matcher.o
  68. │   │   │   ├── prompt.rb
  69. │   │   │   ├── ruby_compat.h
  70. │   │   │   ├── scanner
  71. │   │   │   │   ├── buffer_scanner.rb
  72. │   │   │   │   └── file_scanner.rb
  73. │   │   │   ├── scanner.rb
  74. │   │   │   ├── settings.rb
  75. │   │   │   ├── stub.rb
  76. │   │   │   ├── vim
  77. │   │   │   │   ├── path_utilities.rb
  78. │   │   │   │   ├── screen.rb
  79. │   │   │   │   └── window.rb
  80. │   │   │   └── vim.rb
  81. │   │   ├── spec
  82. │   │   │   ├── command-t
  83. │   │   │   │   ├── controller_spec.rb
  84. │   │   │   │   ├── finder
  85. │   │   │   │   │   ├── buffer_finder_spec.rb
  86. │   │   │   │   │   └── file_finder_spec.rb
  87. │   │   │   │   ├── match_spec.rb
  88. │   │   │   │   ├── matcher_spec.rb
  89. │   │   │   │   └── scanner
  90. │   │   │   │   ├── buffer_scanner_spec.rb
  91. │   │   │   │   └── file_scanner_spec.rb
  92. │   │   │   ├── spec_helper.rb
  93. │   │   │   └── vim_formatter.rb
  94. │   │   └── vendor
  95. │   │   ├── vimball
  96. │   │   └── vimscriptuploader
  97. │   ├── nerdtree
  98. │   │   ├── Rakefile
  99. │   │   ├── doc
  100. │   │   │   └── NERD_tree.txt
  101. │   │   ├── nerdtree_plugin
  102. │   │   │   ├── exec_menuitem.vim
  103. │   │   │   └── fs_menu.vim
  104. │   │   └── plugin
  105. │   │   └── NERD_tree.vim
  106. │   ├── snipmate.vim
  107. │   │   ├── README.markdown
  108. │   │   ├── after
  109. │   │   │   └── plugin
  110. │   │   │   └── snipMate.vim
  111. │   │   ├── autoload
  112. │   │   │   └── snipMate.vim
  113. │   │   ├── doc
  114. │   │   │   └── snipMate.txt
  115. │   │   ├── ftplugin
  116. │   │   │   └── html_snip_helper.vim
  117. │   │   ├── plugin
  118. │   │   │   └── snipMate.vim
  119. │   │   ├── plugin-info.txt
  120. │   │   ├── snippets
  121. │   │   │   ├── _.snippets
  122. │   │   │   ├── autoit.snippets
  123. │   │   │   ├── c.snippets
  124. │   │   │   ├── cpp.snippets
  125. │   │   │   ├── erlang.snippets
  126. │   │   │   ├── html.snippets
  127. │   │   │   ├── java.snippets
  128. │   │   │   ├── javascript.snippets
  129. │   │   │   ├── mako.snippets
  130. │   │   │   ├── objc.snippets
  131. │   │   │   ├── perl.snippets
  132. │   │   │   ├── php.snippets
  133. │   │   │   ├── python.snippets
  134. │   │   │   ├── ruby.snippets
  135. │   │   │   ├── sh.snippets
  136. │   │   │   ├── snippet.snippets
  137. │   │   │   ├── tcl.snippets
  138. │   │   │   ├── tex.snippets
  139. │   │   │   ├── vim.snippets
  140. │   │   │   └── zsh.snippets
  141. │   │   └── syntax
  142. │   │   └── snippet.vim
  143. │   ├── vim-align
  144. │   │   ├── autoload
  145. │   │   │   ├── Align.vim
  146. │   │   │   └── AlignMaps.vim
  147. │   │   ├── doc
  148. │   │   │   ├── Align.txt
  149. │   │   │   └── tags
  150. │   │   └── plugin
  151. │   │   ├── AlignMapsPlugin.vim
  152. │   │   ├── AlignPlugin.vim
  153. │   │   └── cecutil.vim
  154. │   ├── vim-colors-solarized
  155. │   │   ├── README.mkd
  156. │   │   ├── autoload
  157. │   │   │   └── togglebg.vim
  158. │   │   ├── bitmaps
  159. │   │   │   └── togglebg.png
  160. │   │   ├── colors
  161. │   │   │   └── solarized.vim
  162. │   │   └── doc
  163. │   │   ├── solarized.txt
  164. │   │   └── tags
  165. │   ├── vim-cucumber
  166. │   │   ├── compiler
  167. │   │   │   └── cucumber.vim
  168. │   │   ├── ftdetect
  169. │   │   │   └── cucumber.vim
  170. │   │   ├── ftplugin
  171. │   │   │   └── cucumber.vim
  172. │   │   ├── indent
  173. │   │   │   └── cucumber.vim
  174. │   │   └── syntax
  175. │   │   └── cucumber.vim
  176. │   ├── vim-endwise
  177. │   │   └── plugin
  178. │   │   └── endwise.vim
  179. │   ├── vim-haml
  180. │   │   ├── ftdetect
  181. │   │   │   └── haml.vim
  182. │   │   ├── ftplugin
  183. │   │   │   ├── haml.vim
  184. │   │   │   ├── sass.vim
  185. │   │   │   └── scss.vim
  186. │   │   ├── indent
  187. │   │   │   ├── haml.vim
  188. │   │   │   ├── sass.vim
  189. │   │   │   └── scss.vim
  190. │   │   └── syntax
  191. │   │   ├── haml.vim
  192. │   │   ├── sass.vim
  193. │   │   └── scss.vim
  194. │   ├── vim-pastie
  195. │   │   ├── doc
  196. │   │   │   └── pastie.txt
  197. │   │   └── plugin
  198. │   │   └── pastie.vim
  199. │   ├── vim-rails
  200. │   │   ├── README
  201. │   │   ├── Rakefile
  202. │   │   ├── autoload
  203. │   │   │   └── rails.vim
  204. │   │   ├── doc
  205. │   │   │   └── rails.txt
  206. │   │   └── plugin
  207. │   │   └── rails.vim
  208. │   ├── vim-shoulda
  209. │   │   └── plugin
  210. │   │   └── shoulda.vim
  211. │   ├── vim-supertab
  212. │   │   ├── doc
  213. │   │   │   ├── supertab.txt
  214. │   │   │   └── tags
  215. │   │   └── plugin
  216. │   │   └── supertab.vim
  217. │   ├── vim-surround
  218. │   │   ├── doc
  219. │   │   │   └── surround.txt
  220. │   │   └── plugin
  221. │   │   └── surround.vim
  222. │   └── vim-tcomment
  223. │   ├── autoload
  224. │   │   └── tcomment.vim
  225. │   ├── doc
  226. │   │   ├── tComment.txt
  227. │   │   └── tags
  228. │   └── plugin
  229. │   └── tComment.vim
  230. ├── metadata.rb
  231. ├── recipes
  232. │   └── default.rb
  233. └── templates
  234. └── default
  235. ├── bash_profile.erb
  236. ├── bashrc.erb
  237. ├── dot.autospec.erb
  238. ├── dot.gemrc.erb
  239. ├── dot_editrc.erb
  240. ├── dot_inputrc.erb
  241. └── vimrc.erb
  242.  
  243. 83 directories, 152 files
Add Comment
Please, Sign In to add comment