-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugins.lua
109 lines (108 loc) · 2.35 KB
/
plugins.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
local plugins = {
{
"williamboman/mason.nvim",
opts = require "custom.configs.mason",
},
{
"nvim-treesitter/nvim-treesitter",
opts = require "custom.configs.treesitter",
},
{
"nvim-tree/nvim-tree.lua",
opts = require "custom.configs.nvimtree",
},
{
"folke/which-key.nvim",
opts = require "custom.configs.whichkey",
},
{
"neovim/nvim-lspconfig",
config = function()
require "plugins.configs.lspconfig" -- default NvChad config
require "custom.configs.lspconfig" -- custom config
end,
},
{
"nvimtools/none-ls.nvim",
lazy = false,
dependencies = {
"nvimtools/none-ls-extras.nvim",
},
opts = function()
return require "custom.configs.null-ls"
end,
},
{
"windwp/nvim-ts-autotag",
event = "VeryLazy",
ft = require("custom.configs.nvim-ts-autotag").ft,
config = function()
require("custom.configs.nvim-ts-autotag").setup()
end,
},
{
"kylechui/nvim-surround",
version = "*",
event = "VeryLazy",
config = function()
return require("custom.configs.nvim-surround").setup()
end,
},
{
"akinsho/git-conflict.nvim",
event = "VeryLazy",
version = "*",
config = require "custom.configs.git-conflict",
},
{
"folke/flash.nvim",
event = "VeryLazy",
opts = require "custom.configs.flash",
},
{
"github/copilot.vim",
event = "BufRead",
},
{
"CopilotC-Nvim/CopilotChat.nvim",
dependencies = {
"github/copilot.vim",
"nvim-lua/plenary.nvim",
},
event = "VeryLazy",
opts = require "custom.configs.copilot",
},
{
"yetone/avante.nvim",
event = "VeryLazy",
lazy = false,
version = false,
opts = require "custom.configs.avante",
build = "make",
dependencies = {
-- "stevearc/dressing.nvim",
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
"hrsh7th/nvim-cmp",
"nvim-tree/nvim-web-devicons",
},
},
{
"ThePrimeagen/vim-be-good",
event = "VeryLazy",
},
{
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { "nvim-treesitter/nvim-treesitter" },
event = "VeryLazy",
opts = require "custom.configs.render-markdown",
},
{
"antonk52/markdowny.nvim",
event = "VeryLazy",
config = function()
require("markdowny").setup()
end,
},
}
return plugins