mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
add: remove of unused plugins
This commit is contained in:
parent
02ea286c83
commit
53b42062e3
7 changed files with 25 additions and 17 deletions
|
@ -240,13 +240,13 @@ return {
|
|||
-- end,
|
||||
-- },
|
||||
-- for Speed up loading Lua modules in Neovim to improve startup time.
|
||||
{
|
||||
"lewis6991/impatient.nvim",
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
require("user.impatient")
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "lewis6991/impatient.nvim",
|
||||
-- event = "BufWinEnter",
|
||||
-- config = function()
|
||||
-- require("user.impatient")
|
||||
-- end,
|
||||
-- },
|
||||
-- for live server html,css,js
|
||||
-- {
|
||||
-- "manzeloth/live-server",
|
||||
|
@ -385,5 +385,5 @@ return {
|
|||
end,
|
||||
},
|
||||
-- remove duplicate
|
||||
{ "tpope/vim-repeat", event = "InsertEnter" },
|
||||
-- { "tpope/vim-repeat", event = "InsertEnter" },
|
||||
}
|
||||
|
|
|
@ -44,11 +44,15 @@ return {
|
|||
config = function()
|
||||
require("lsp-progress").setup({
|
||||
client_format = function(client_name, spinner, series_messages)
|
||||
return #series_messages > 0 and (spinner .. " " .. table.concat(series_messages, ", ")) or nil
|
||||
return #series_messages > 0
|
||||
and (spinner .. " " .. string.sub(table.concat(series_messages, ", "), 1, 25) .. " ...")
|
||||
or nil
|
||||
end,
|
||||
format = function(client_messages)
|
||||
local sign = ""
|
||||
return #client_messages > 0 and (sign .. " " .. table.concat(client_messages, " ")) or sign
|
||||
return #client_messages > 0
|
||||
and (sign .. " " .. string.sub(table.concat(client_messages, " "), 1, 25) .. " ...")
|
||||
or sign
|
||||
end,
|
||||
})
|
||||
end,
|
||||
|
|
|
@ -54,7 +54,7 @@ return {
|
|||
end,
|
||||
},
|
||||
-- for delete buffers (close files) without closing your windows or messing up your layout.
|
||||
{ "moll/vim-bbye", event = "InsertEnter" },
|
||||
-- { "moll/vim-bbye", event = "InsertEnter" },
|
||||
-- for view terminal
|
||||
{
|
||||
"akinsho/toggleterm.nvim",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue