mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
10 lines
165 B
Nix
10 lines
165 B
Nix
{ pkgs, ... }: {
|
|
plugins = [ pkgs.vimPlugins.lualine-nvim ];
|
|
setup.lualine = {
|
|
options = {
|
|
theme = "base16";
|
|
icons_enabled = true;
|
|
};
|
|
};
|
|
}
|