summaryrefslogtreecommitdiff
path: root/lua/core/commands.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-10 21:07:41 +0200
committerGitHub <[email protected]>2021-10-10 21:07:41 +0200
commit52b74557415eb757ad4b7481b0aec8a3f98dd58d (patch)
tree9a05ec71a46c99fbdf8df0043be652b528c7c04e /lua/core/commands.lua
parente2c85df440564a62fd804555747b1652a6844a5e (diff)
feat: add an independent lvim namespace (#1699)
Diffstat (limited to 'lua/core/commands.lua')
-rw-r--r--lua/core/commands.lua25
1 files changed, 0 insertions, 25 deletions
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