plugins/lightline: migrate to mkNeovimPlugin

This commit is contained in:
Austin Horstman 2024-08-23 09:17:11 -05:00
parent 052ee66dbb
commit 4c8d3559ac
No known key found for this signature in database
4 changed files with 359 additions and 111 deletions

View file

@ -56,26 +56,28 @@
enable = true;
# This is optional - it will default to your enabled colorscheme
colorscheme = "wombat";
settings = {
colorscheme = "wombat";
# This is one of lightline's example configurations
active = {
left = [
[
"mode"
"paste"
]
[
"readonly"
"filename"
"modified"
"helloworld"
]
];
};
# This is one of lightline's example configurations
active = {
left = [
[
"mode"
"paste"
]
[
"readonly"
"filename"
"modified"
"helloworld"
]
];
};
component = {
helloworld = "Hello, world!";
component = {
helloworld = "Hello, world!";
};
};
};