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

10 lines
165 B
Nix
Raw Normal View History

2022-11-28 00:21:18 +00:00
{ pkgs, ... }: {
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;
};
};
}