feat: add an independent lvim namespace (#1699)

This commit is contained in:
kylo252 2021-10-10 21:07:41 +02:00 committed by GitHub
parent e2c85df440
commit 52b7455741
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
63 changed files with 392 additions and 256 deletions

View file

@ -1,25 +0,0 @@
local M = {}
M.defaults = {
[[
function! QuickFixToggle()
if empty(filter(getwininfo(), 'v:val.quickfix'))
copen
else
cclose
endif
endfunction
]],
-- :LvimInfo
[[ command! LvimInfo lua require('core.info').toggle_popup(vim.bo.filetype) ]],
[[ command! LvimCacheReset lua require('utils.hooks').reset_cache() ]],
[[ command! LvimUpdate lua require('bootstrap').update() ]],
}
M.load = function(commands)
for _, command in ipairs(commands) do
vim.cmd(command)
end
end
return M