This commit is contained in:
Morten Olsen
2021-11-07 22:39:54 +01:00
commit 0c52a449b4
2 changed files with 98 additions and 0 deletions

11
plugin/main.vim Normal file
View File

@@ -0,0 +1,11 @@
" function! ReloadAlpha()
" lua << EOF
" for k in pairs(package.loaded) do
" if k:match("^share.nvim") then
" package.loaded[k] = nil
" end
" end
" EOF
" endfunction
" nnoremap <Leader>pr :call ReloadAlpha()<CR>
" vnoremap <Leader>ps :lua require("share").share()<CR>