blob: 28944ff9f07678aa796193c007f9110f69b23559 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{pkgs, ...}: {
programs.nixvim = {
# Not all plugins have own modules
# You can add missing plugins here
# `pkgs.vimExtraPlugins` is added by the overlay you added at the beginning
# For a list of available plugins, look here: [available plugins](https://github.com/jooooscha/nixpkgs-vim-extra-plugins/blob/main/plugins.md)
extraPlugins = with pkgs.vimExtraPlugins; [
nightfox-nvim
nvim-lint
lf-nvim
gruvbox
nvim-toggleterm-lua # required by lf-nvim
];
};
}
|