Compare commits
No commits in common. "ae0374c99b5ab14ab720ea2cc4bcbc0a0b3dfa33" and "cb9ccbbf969e42ee21e2ae16b86b16963c8c2f2c" have entirely different histories.
ae0374c99b
...
cb9ccbbf96
2 changed files with 57 additions and 1 deletions
57
nvim/.config/nvim/lua/plugins/languages/agda.lua
Normal file
57
nvim/.config/nvim/lua/plugins/languages/agda.lua
Normal file
|
|
@ -0,0 +1,57 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
'isovector/cornelis',
|
||||||
|
dependencies = {
|
||||||
|
'kana/vim-textobj-user',
|
||||||
|
'neovimhaskell/nvim-hs.vim',
|
||||||
|
},
|
||||||
|
build = 'stack build',
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"<leader>cl",
|
||||||
|
":CornelisLoad<CR>",
|
||||||
|
"Load",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>cr",
|
||||||
|
":CornelisRefine<CR>",
|
||||||
|
"Refine",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>cd",
|
||||||
|
":CornelisMakeCase<CR>",
|
||||||
|
"Make Case",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>c,",
|
||||||
|
":CornelisTypeContext<CR>",
|
||||||
|
"Type Context",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>c.",
|
||||||
|
":CornelisTypeContextInfer<CR>",
|
||||||
|
"Type Context Infer",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>ca",
|
||||||
|
":CornelisAuto<CR>",
|
||||||
|
"Auto",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"gd",
|
||||||
|
":CornelisGoToDefinition<CR>",
|
||||||
|
"Go to definition"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"[e",
|
||||||
|
":CornelisPrevGoal",
|
||||||
|
"Previous Goal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"]e",
|
||||||
|
":CornelisNextGoal",
|
||||||
|
"Next Goal"
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -39,4 +39,3 @@ export PACK_DIR="$HOME/.local/share/pack"
|
||||||
export MIZFILES="$HOME/.local/share/mizar"
|
export MIZFILES="$HOME/.local/share/mizar"
|
||||||
export RLWRAP_HOME="$XDG_DATA_HOME/rlwrap"
|
export RLWRAP_HOME="$XDG_DATA_HOME/rlwrap"
|
||||||
export PACK_DIR="$XDG_DATA_HOME/pack"
|
export PACK_DIR="$XDG_DATA_HOME/pack"
|
||||||
export WOLFRAM_USERBASE="$XDG_DATA_HOME/wolfram"
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue