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

11 lines
239 B
Nix
Raw Normal View History

2022-01-26 19:45:40 +00:00
{ pkgs, ... }: {
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
'';
};
2022-01-26 19:45:40 +00:00
}