diff --git a/7.-Contoh-Custom-Plugins.md b/7.-Contoh-Custom-Plugins.md index 18de55d..573228f 100644 --- a/7.-Contoh-Custom-Plugins.md +++ b/7.-Contoh-Custom-Plugins.md @@ -1330,4 +1330,25 @@ return{ } ``` summer : -https://github.com/karb94/neoscroll.nvim \ No newline at end of file +https://github.com/karb94/neoscroll.nvim + +#Laravel Nvim +- nuat file lua/plugin/laravel.lua +```lua +return { + "adalessa/laravel.nvim", + dependencies = { + "nvim-telescope/telescope.nvim", + }, + cmd = { "Sail", "Artisan", "Composer" }, + keys = { + { "pa", ":Artisan" }, + }, + config = function() + require("laravel").setup() + require("telescope").load_extension("laravel") + end, +} +``` +summer : +https://github.com/adalessa/laravel.nvim \ No newline at end of file