mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
15 lines
369 B
Lua
15 lines
369 B
Lua
|
-- custom plugins disini
|
||
|
return {
|
||
|
{ "nvim-treesitter/nvim-treesitter" },
|
||
|
--- masukan plugin tambahan disini
|
||
|
{ "folke/trouble.nvim", enabled = false }, -- ini untuk disable plugin
|
||
|
-- contoh custom color scheme
|
||
|
-- {
|
||
|
-- "folke/tokyonight.nvim",
|
||
|
-- event = "BufWinEnter",
|
||
|
-- config = function()
|
||
|
-- vim.cmd([[colorscheme tokyonight-night]])
|
||
|
-- end,
|
||
|
-- },
|
||
|
}
|