nixos/home/neovim/home.nix

14 lines
244 B
Nix
Raw Normal View History

{ pkgs
, ... }: {
programs.neovim = {
enable = true;
defaultEditor = true;
extraPackages = with pkgs; [ ];
plugins = with pkgs.vimPlugins; [ vim-nix ];
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
};
}