Order and sort plugins
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 23s
Details
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 23s
Details
This commit is contained in:
parent
2e0d35c2d9
commit
ab043c5c1c
|
@ -1,10 +1,37 @@
|
||||||
return {
|
return {
|
||||||
|
|
||||||
|
-- Behavior
|
||||||
|
"tpope/vim-surround",
|
||||||
|
"tpope/vim-speeddating",
|
||||||
|
"mg979/vim-visual-multi",
|
||||||
|
"SirVer/UltiSnips",
|
||||||
|
"cohama/lexima.vim",
|
||||||
|
"voldikss/vim-floaterm",
|
||||||
|
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
||||||
|
|
||||||
|
-- Navigation
|
||||||
"preservim/nerdtree",
|
"preservim/nerdtree",
|
||||||
"Xuyuanp/nerdtree-git-plugin",
|
"Xuyuanp/nerdtree-git-plugin",
|
||||||
"SirVer/UltiSnips",
|
"yannickreiss/nvim-doxyscan",
|
||||||
"tpope/vim-surround",
|
"mihaifm/bufstop",
|
||||||
|
{ "nvim-telescope/telescope-fzf-native.nvim", run = "make" },
|
||||||
|
{ "tzachar/fuzzy.nvim", requires = { "nvim-telescope/telescope-fzf-native.nvim" } },
|
||||||
|
"fhill2/telescope-ultisnips.nvim",
|
||||||
|
"preservim/tagbar",
|
||||||
|
|
||||||
|
-- Visuals
|
||||||
"vim-airline/vim-airline",
|
"vim-airline/vim-airline",
|
||||||
"vim-airline/vim-airline-themes",
|
"vim-airline/vim-airline-themes",
|
||||||
|
"ryanoasis/vim-devicons",
|
||||||
|
"tiagofumo/vim-nerdtree-syntax-highlight",
|
||||||
|
{
|
||||||
|
"nvim-telescope/telescope.nvim",
|
||||||
|
tag = "0.1.5",
|
||||||
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
|
},
|
||||||
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
{ "romgrk/barbar.nvim", wants = "nvim-web-devicons" },
|
||||||
|
"mhinz/vim-startify",
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
|
@ -19,26 +46,18 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
"f-person/git-blame.nvim",
|
|
||||||
"p00f/nvim-ts-rainbow",
|
"p00f/nvim-ts-rainbow",
|
||||||
"cohama/lexima.vim",
|
"dense-analysis/ale",
|
||||||
"ryanoasis/vim-devicons",
|
"f-person/git-blame.nvim",
|
||||||
"tiagofumo/vim-nerdtree-syntax-highlight",
|
|
||||||
{
|
|
||||||
"nvim-telescope/telescope.nvim",
|
|
||||||
tag = "0.1.5",
|
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
|
||||||
},
|
|
||||||
"fhill2/telescope-ultisnips.nvim",
|
|
||||||
"hiroakis/cyberspace.vim",
|
|
||||||
"tpope/vim-speeddating",
|
|
||||||
"yannickreiss/nvim-doxyscan",
|
|
||||||
"nvim-tree/nvim-web-devicons",
|
|
||||||
{ "romgrk/barbar.nvim", wants = "nvim-web-devicons" },
|
|
||||||
"dstein64/vim-startuptime",
|
"dstein64/vim-startuptime",
|
||||||
"mhinz/vim-startify",
|
|
||||||
|
-- Themes
|
||||||
"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
"patstockwell/vim-monokai-tasty",
|
"patstockwell/vim-monokai-tasty",
|
||||||
|
"hiroakis/cyberspace.vim",
|
||||||
|
"jaredgorski/spacecamp",
|
||||||
|
|
||||||
|
-- Code completion / Menu
|
||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
"hrsh7th/cmp-nvim-lua",
|
"hrsh7th/cmp-nvim-lua",
|
||||||
|
@ -52,19 +71,12 @@ return {
|
||||||
"f3fora/cmp-spell",
|
"f3fora/cmp-spell",
|
||||||
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
||||||
"quangnguyen30192/cmp-nvim-ultisnips",
|
"quangnguyen30192/cmp-nvim-ultisnips",
|
||||||
|
|
||||||
|
-- LSP / Formatter
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
"williamboman/mason-lspconfig.nvim",
|
"williamboman/mason-lspconfig.nvim",
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
"mfussenegger/nvim-dap",
|
"mfussenegger/nvim-dap",
|
||||||
"mhartington/formatter.nvim",
|
"mhartington/formatter.nvim",
|
||||||
"mg979/vim-visual-multi",
|
|
||||||
{ "nvim-telescope/telescope-fzf-native.nvim", run = "make" },
|
|
||||||
{ "tzachar/fuzzy.nvim", requires = { "nvim-telescope/telescope-fzf-native.nvim" } },
|
|
||||||
"mihaifm/bufstop",
|
|
||||||
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
|
||||||
"jaredgorski/spacecamp",
|
|
||||||
"voldikss/vim-floaterm",
|
|
||||||
"dense-analysis/ale",
|
|
||||||
{ "TamaMcGlinn/nvim-lspconfig-ada" },
|
{ "TamaMcGlinn/nvim-lspconfig-ada" },
|
||||||
"preservim/tagbar",
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue