mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
20 lines
444 B
Lua
20 lines
444 B
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,
|
|
},
|
|
}
|