nixos-config/home-manager/modules/neovim.nix

10 lines
232 B
Nix
Raw Normal View History

2022-01-25 00:31:56 +00:00
{ ... }: {
programs.vim = {
enable = true;
plugins = with pkgs.vimPlugins; [ vim-airline neoformat vim-monokai ];
settings = { ignorecase = true; };
extraConfig = ''
set mouse=a
'';
};
}