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