Files
share.nvim/plugin/main.vim
Morten Olsen 0c52a449b4 init
2021-11-07 22:56:39 +01:00

12 lines
305 B
VimL

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