From 52b74557415eb757ad4b7481b0aec8a3f98dd58d Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Sun, 10 Oct 2021 21:07:41 +0200 Subject: feat: add an independent lvim namespace (#1699) --- lua/core/commands.lua | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 lua/core/commands.lua (limited to 'lua/core/commands.lua') diff --git a/lua/core/commands.lua b/lua/core/commands.lua deleted file mode 100644 index 6ceeaaff..00000000 --- a/lua/core/commands.lua +++ /dev/null @@ -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 -- cgit v1.2.3