mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-08-01 16:34:39 +02:00
Updated 7. Contoh Custom Plugins (markdown)
parent
50246e057e
commit
f22bdf3008
1 changed files with 22 additions and 1 deletions
|
@ -1330,4 +1330,25 @@ return{
|
|||
}
|
||||
```
|
||||
summer : <be>
|
||||
https://github.com/karb94/neoscroll.nvim
|
||||
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 = {
|
||||
{ "<leader>pa", ":Artisan<cr>" },
|
||||
},
|
||||
config = function()
|
||||
require("laravel").setup()
|
||||
require("telescope").load_extension("laravel")
|
||||
end,
|
||||
}
|
||||
```
|
||||
summer : <be>
|
||||
https://github.com/adalessa/laravel.nvim
|
Loading…
Add table
Add a link
Reference in a new issue