blob: fdc30d7f6d6cb9a8fc1368affdcd770ead4ff415 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{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
nvim-toggleterm-lua # required by lf-nvim
];
};
}
|