mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
44 lines
1.1 KiB
Lua
44 lines
1.1 KiB
Lua
return {
|
|
--- masukan plugin tambahan disini
|
|
{ "folke/trouble.nvim", enabled = false }, -- ini untuk disable plugin
|
|
{ "dracula/vim" },
|
|
-- { "folke/tokyonight.nvim" },
|
|
-- { "arcticicestudio/nord-vim" },
|
|
-- { "sainnhe/sonokai" },
|
|
-- { "RRethy/nvim-base16" },
|
|
-- {
|
|
-- "navarasu/onedark.nvim",
|
|
-- priority = 1000,
|
|
-- config = function()
|
|
-- -- Lua
|
|
-- require("onedark").setup({
|
|
-- style = "darker",
|
|
-- })
|
|
-- require("onedark").load()
|
|
-- end,
|
|
-- },
|
|
{
|
|
"marko-cerovac/material.nvim",
|
|
config = function()
|
|
vim.g.material_style = "palenight"
|
|
require("material").setup({
|
|
lualine_style = "stealth",
|
|
})
|
|
end,
|
|
},
|
|
-- {
|
|
-- "linrongbin16/lsp-progress.nvim",
|
|
-- branch = "main",
|
|
-- event = { "VimEnter" },
|
|
-- config = function()
|
|
-- require("lsp-progress").setup({
|
|
-- format = function(client_messages)
|
|
-- local sign = "" -- nf-fa-gear \uf013
|
|
-- return #client_messages > 0 and (sign .. " " .. table.concat(client_messages, " ")) or sign
|
|
-- end,
|
|
-- })
|
|
-- end,
|
|
-- -- },
|
|
-- { "arkav/lualine-lsp-progress", event = "BufRead" },
|
|
-- { "j-hui/fidget.nvim", enabled = false },
|
|
}
|