From ae0374c99b5ab14ab720ea2cc4bcbc0a0b3dfa33 Mon Sep 17 00:00:00 2001 From: William Ball Date: Mon, 31 Mar 2025 18:27:10 -0700 Subject: [PATCH] got rid of cornelis --- .../nvim/lua/plugins/languages/agda.lua | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 nvim/.config/nvim/lua/plugins/languages/agda.lua 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" - }, - } - } -}