mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-09 03:56:05 +01:00
703 B
703 B
List of plugins for NixVim
Colorschemes
Gruvbox
Just set enable to use the colorscheme.
programs.nixvim.colorscheme.gruvbox.enable = true;
Status lines
Lightline
Lightline is a small and customizable status line for vim. It can be enabled
with programs.nixvim.plugins.lightline.enable, and it will try to use the
colorscheme set by the user. If you want to manually override this, set
programs.nixvim.plugins.lightline.colorscheme to the name of the colorscheme
to use.
programs.nixvim.plugins.lightline = {
enable = true; # Enable this plugin
# This can be set to null to reset. Defaults to global colorscheme
colorscheme = "wombat";
# ...
};