dotfiles/modules/common/neovim/config/statusline.nix

11 lines
165 B
Nix
Raw Normal View History

2024-04-20 13:42:06 +00:00
{ pkgs, ... }:
{
2022-11-28 00:21:18 +00:00
plugins = [ pkgs.vimPlugins.lualine-nvim ];
setup.lualine = {
options = {
2023-07-10 05:06:36 +00:00
theme = "base16";
2022-11-28 00:21:18 +00:00
icons_enabled = true;
};
};
}