nvim: remove stupid "after" statements

This commit is contained in:
2023-07-08 15:20:42 +03:00
parent 1ceb9003cd
commit d8538063ef

View File

@ -28,16 +28,30 @@ require("packer").startup(function()
require("plugins.cmp") require("plugins.cmp")
end, end,
}) })
use({ "hrsh7th/cmp-nvim-lsp", after = "nvim-cmp" })
use({ "hrsh7th/cmp-vsnip", after = "nvim-cmp" }) use({
use({ "hrsh7th/cmp-buffer", after = "nvim-cmp" }) "hrsh7th/cmp-nvim-lsp",
use({ "hrsh7th/cmp-path", after = "nvim-cmp" }) })
use({ "hrsh7th/cmp-nvim-lsp-signature-help", after = "nvim-cmp" })
use({
"hrsh7th/cmp-vsnip",
})
use({
"hrsh7th/cmp-buffer",
})
use({
"hrsh7th/cmp-path",
})
use({
"hrsh7th/cmp-nvim-lsp-signature-help",
})
-- snippets -- snippets
use({ use({
"hrsh7th/vim-vsnip", "hrsh7th/vim-vsnip",
after = "nvim-cmp",
config = function() config = function()
require("plugins.vsnip") require("plugins.vsnip")
end, end,
@ -45,13 +59,11 @@ require("packer").startup(function()
use({ use({
"rafamadriz/friendly-snippets", "rafamadriz/friendly-snippets",
after = "vim-vsnip",
}) })
-- autopairs -- autopairs
use({ use({
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
after = "nvim-cmp",
config = function() config = function()
require("plugins.autopairs") require("plugins.autopairs")
end, end,
@ -136,12 +148,10 @@ require("packer").startup(function()
use({ use({
"crusoexia/vim-monokai", "crusoexia/vim-monokai",
after = "nvim-treesitter",
}) })
use({ use({
"dylanaraps/wal.vim", "dylanaraps/wal.vim",
after = "nvim-treesitter",
}) })
-- --
@ -158,6 +168,5 @@ require("packer").startup(function()
use({ use({
"renerocksai/calendar-vim", "renerocksai/calendar-vim",
after = "telekasten.nvim",
}) })
end) end)