knox revised this gist . Go to revision
1 file changed, 25 insertions
avante.nvim-3.lua(file created)
@@ -0,0 +1,25 @@ | |||
1 | + | local add, later, now = MiniDeps.add, MiniDeps.later, MiniDeps.now | |
2 | + | ||
3 | + | add({ | |
4 | + | source = 'yetone/avante.nvim', | |
5 | + | monitor = 'main', | |
6 | + | depends = { | |
7 | + | 'stevearc/dressing.nvim', | |
8 | + | 'nvim-lua/plenary.nvim', | |
9 | + | 'MunifTanjim/nui.nvim', | |
10 | + | 'echasnovski/mini.icons' | |
11 | + | }, | |
12 | + | hooks = { post_checkout = function() vim.cmd('make') end } | |
13 | + | }) | |
14 | + | --- optional | |
15 | + | add({ source = 'zbirenbaum/copilot.lua' }) | |
16 | + | add({ source = 'HakonHarnes/img-clip.nvim' }) | |
17 | + | add({ source = 'MeanderingProgrammer/render-markdown.nvim' }) | |
18 | + | ||
19 | + | now(function() require('avante_lib').load() end) | |
20 | + | later(function() require('render-markdown').setup({...}) end) | |
21 | + | later(function() | |
22 | + | require('img-clip').setup({...}) -- config img-clip | |
23 | + | require("copilot").setup({...}) -- setup copilot to your liking | |
24 | + | require("avante").setup({...}) -- config for avante.nvim | |
25 | + | end) |
Newer
Older