|
@@ -53,10 +53,11 @@ return {
|
|
|
require("neoscroll").setup({})
|
|
require("neoscroll").setup({})
|
|
|
end,
|
|
end,
|
|
|
},
|
|
},
|
|
|
|
|
+ -- Swiss Army knife among Neovim plugins
|
|
|
{ "echasnovski/mini.nvim", version = false },
|
|
{ "echasnovski/mini.nvim", version = false },
|
|
|
- {
|
|
|
|
|
- "farmergreg/vim-lastplace", -- when open go to the closed position
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ -- when open go to the closed position
|
|
|
|
|
+ { "farmergreg/vim-lastplace" },
|
|
|
|
|
+ -- icons
|
|
|
{
|
|
{
|
|
|
"nvim-tree/nvim-web-devicons",
|
|
"nvim-tree/nvim-web-devicons",
|
|
|
config = function()
|
|
config = function()
|
|
@@ -115,17 +116,17 @@ return {
|
|
|
-- code
|
|
-- code
|
|
|
end,
|
|
end,
|
|
|
},
|
|
},
|
|
|
|
|
+ -- Extensible UI for Neovim notifications and LSP progress messages
|
|
|
{
|
|
{
|
|
|
"j-hui/fidget.nvim",
|
|
"j-hui/fidget.nvim",
|
|
|
- opts = {
|
|
|
|
|
- -- options
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ opts = {},
|
|
|
},
|
|
},
|
|
|
|
|
+ -- extensible core UI hooks
|
|
|
{
|
|
{
|
|
|
"stevearc/dressing.nvim",
|
|
"stevearc/dressing.nvim",
|
|
|
opts = {},
|
|
opts = {},
|
|
|
},
|
|
},
|
|
|
- { "eandrju/cellular-automaton.nvim" }, -- stupid animation
|
|
|
|
|
|
|
+ { "eandrju/cellular-automaton.nvim" }, -- stupid animation ex :CellularAutomaton make_it_rain
|
|
|
{ url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim" }, -- rainbow delimiters
|
|
{ url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim" }, -- rainbow delimiters
|
|
|
{
|
|
{
|
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
@@ -238,4 +239,15 @@ return {
|
|
|
})
|
|
})
|
|
|
end,
|
|
end,
|
|
|
},
|
|
},
|
|
|
|
|
+ -- quickly switch between frequently used files ";"
|
|
|
|
|
+ {
|
|
|
|
|
+ "jackMort/tide.nvim",
|
|
|
|
|
+ opts = {
|
|
|
|
|
+ -- optional configuration
|
|
|
|
|
+ },
|
|
|
|
|
+ dependencies = {
|
|
|
|
|
+ "MunifTanjim/nui.nvim",
|
|
|
|
|
+ "nvim-tree/nvim-web-devicons",
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
}
|
|
}
|