Introduction to lla's plugin system and architecture. Learn how to extend lla's core functionality through plugins that can add new commands, modify displays, and integrate with external tools. Includes overview of installation, management, and updates.
The heart of lla's extensibility lies in its thoughtfully designed plugin system. Built on a foundation of version independence and robust message passing, this architecture lets you enhance and customize lla while maintaining stability and performance.
Note:
You will need to install rust to be able to install plugins.
you can install rust by running the following command:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Install pluginslla install --git https://github.com/user/plugin # From Git repositorylla install --dir path/to/plugin # From local directory# Manage your pluginslla use # Interactive managementlla --enable-plugin name # Enable functionalitylla --disable-plugin name # Disable when needed