shlogg · Early preview
Paul Redmond @paulredmond

LALI Components: Laravel Livewire Autocomplete For Neovim

Navigate Laravel & Livewire components with ease! LALI Components plugin for Neovim offers autocompletion & navigation using gf command & nvim-cmp. Learn more on GitHub!

LALI Components is a Neovim plugin for autocompletion of Laravel and Livewire components by community member Ricardo Ramirez. It offers component navigation using gf, prompting you to choose the component when more than one exists, as well as autocompletion using nvim-cmp:
#1. Navigating to Components with gf
Using the gf command on certain component names in your code will open the corresponding component file. This feature works with the following patterns:
<x-name>
@extends('name')
@include('name')
<livewire:name>
@livewire('name')
#2. Autocompletion with nvim-cmp
When using the Neovim comp...