mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
plugins/lightline: migrate to mkNeovimPlugin
This commit is contained in:
parent
052ee66dbb
commit
4c8d3559ac
4 changed files with 359 additions and 111 deletions
38
example.nix
38
example.nix
|
@ -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!";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue