diff --git a/nvim/.config/nvim/lua/plugins/languages/agda.lua b/nvim/.config/nvim/lua/plugins/languages/agda.lua deleted file mode 100644 index 1dd2edb..0000000 --- a/nvim/.config/nvim/lua/plugins/languages/agda.lua +++ /dev/null @@ -1,57 +0,0 @@ -return { - { - 'isovector/cornelis', - dependencies = { - 'kana/vim-textobj-user', - 'neovimhaskell/nvim-hs.vim', - }, - build = 'stack build', - keys = { - { - "cl", - ":CornelisLoad", - "Load", - }, - { - "cr", - ":CornelisRefine", - "Refine", - }, - { - "cd", - ":CornelisMakeCase", - "Make Case", - }, - { - "c,", - ":CornelisTypeContext", - "Type Context", - }, - { - "c.", - ":CornelisTypeContextInfer", - "Type Context Infer", - }, - { - "ca", - ":CornelisAuto", - "Auto", - }, - { - "gd", - ":CornelisGoToDefinition", - "Go to definition" - }, - { - "[e", - ":CornelisPrevGoal", - "Previous Goal" - }, - { - "]e", - ":CornelisNextGoal", - "Next Goal" - }, - } - } -}