init plugin

This commit is contained in:
kyazdani42
2020-02-04 19:59:14 +01:00
commit 7ec6a588d5
4 changed files with 142 additions and 0 deletions

12
plugin/tree.vim Normal file
View File

@@ -0,0 +1,12 @@
if exists('g:loaded_tree') | finish | endif
let s:save_cpo = &cpo
set cpo&vim
command! LuaTree lua require'tree'.toggle()
let &cpo = s:save_cpo
unlet s:save_cpo
let g:loaded_tree = 1