Reorder plugins
This commit is contained in:
+16
-8
@@ -21,7 +21,9 @@ local plugins = {
|
|||||||
"Mofiqul/vscode.nvim",
|
"Mofiqul/vscode.nvim",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
config = function () require("plugins.config.vscode") end,
|
config = function ()
|
||||||
|
require("plugins.config.vscode")
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"rcarriga/nvim-notify",
|
"rcarriga/nvim-notify",
|
||||||
@@ -59,14 +61,25 @@ local plugins = {
|
|||||||
"hrsh7th/cmp-cmdline",
|
"hrsh7th/cmp-cmdline",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"onsails/lspkind-nvim",
|
"hrsh7th/cmp-nvim-lua",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ray-x/lsp_signature.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
config = function () require("plugins.config.lsp_signature") end,
|
||||||
|
},
|
||||||
|
--[[ {
|
||||||
|
"hrsh7th/cmp-nvim-lsp-signature-help",
|
||||||
|
}, ]]
|
||||||
{
|
{
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
config = function () require("plugins.config.cmp") end,
|
config = function () require("plugins.config.cmp") end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
"onsails/lspkind-nvim",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
@@ -76,11 +89,6 @@ local plugins = {
|
|||||||
"williamboman/mason-lspconfig.nvim",
|
"williamboman/mason-lspconfig.nvim",
|
||||||
config = function () require("plugins.config.mason_lspconfig") end,
|
config = function () require("plugins.config.mason_lspconfig") end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ray-x/lsp_signature.nvim",
|
|
||||||
event = "VeryLazy",
|
|
||||||
config = function () require("plugins.config.lsp_signature") end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
config = function () require("lsp"):setup() end,
|
config = function () require("lsp"):setup() end,
|
||||||
|
|||||||
Reference in New Issue
Block a user