Compare commits
No commits in common. "266f589b16c1a80a925d5e92823f348ea9ed334a" and "83aaa5aef34962d7b522a65ce4598cc22060f4af" have entirely different histories.
266f589b16
...
83aaa5aef3
2 changed files with 11 additions and 4 deletions
|
|
@ -1,9 +1,6 @@
|
|||
local map = core.misc.map
|
||||
|
||||
-- using my fork for now so that I can generate zig docs, will change back to
|
||||
-- danymat/neogen once my pr gets merged.
|
||||
return { "Squibid/neogen",
|
||||
branch = "zig",
|
||||
return { "danymat/neogen",
|
||||
reqs = {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"L3MON4D3/LuaSnip"
|
||||
|
|
|
|||
10
lua/conf/plugins/opencode.lua
Normal file
10
lua/conf/plugins/opencode.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return { "NickvanDyke/opencode.nvim",
|
||||
load = function()
|
||||
core.misc.map("n", "<leader>oa", function()
|
||||
require("opencode").ask()
|
||||
end, { desc = "Ask opencode" })
|
||||
core.misc.map("v", "<leader>oa", function()
|
||||
require("opencode").ask("@selection: ")
|
||||
end, { desc = "Ask opencode about selection" })
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue