Skip to content

Commit

Permalink
adding basic copilot init
Browse files Browse the repository at this point in the history
  • Loading branch information
ck3mp3r committed Jan 11, 2025
1 parent 8dd6b08 commit b62acb8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .laio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ windows:
- name: code
panes:
- commands: # each pane/window can run commands
- $EDITOR
- command: $EDITOR

- name: misc
panes:
Expand Down
13 changes: 8 additions & 5 deletions config/lua/plugins/avante.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,26 @@ return {
event = "VeryLazy",
lazy = false,
opts = {
provider = 'copilot',
provider = "copilot",
},
dependencies = {
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"nvim-treesitter/nvim-treesitter",
"stevearc/dressing.nvim",
"zbirenbaum/copilot.lua",
{
"zbirenbaum/copilot.lua",
opts = {},
},
{
-- Make sure to set this up properly if you have lazy=true
'MeanderingProgrammer/render-markdown.nvim',
"MeanderingProgrammer/render-markdown.nvim",
opts = {
file_types = { "markdown", "Avante" },
},
ft = { "markdown", "Avante" },
},
}
}
},
},
}

0 comments on commit b62acb8

Please sign in to comment.