mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
14 lines
369 B
Lua
14 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,
|
|
-- },
|
|
}
|