From f22bdf30089e0dabb10c0d6061c5ee0bcadcc918 Mon Sep 17 00:00:00 2001 From: Asep Komarudin <68836805+pojokcodeid@users.noreply.github.com> Date: Thu, 2 Mar 2023 08:24:40 +0700 Subject: [PATCH] Updated 7. Contoh Custom Plugins (markdown) --- 7.-Contoh-Custom-Plugins.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) 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