nixos-config/modules/vim.nix

23 lines
426 B
Nix
Raw Normal View History

2021-04-13 18:05:10 +00:00
{ config, pkgs, ... }:
let
legacy = (config.system.nixos.release == "20.09");
in
{
environment.systemPackages = if legacy then [ pkgs.vim ] else [ ];
programs = if legacy then { } else {
neovim = {
enable = true;
viAlias = true;
configure = {
2021-04-14 17:34:47 +00:00
packages.sconfig.start = [ pkgs.vimPlugins.vim-nix ];
2021-04-13 18:05:10 +00:00
customRC = ''
set nowrap scrolloff=9
'';
};
};
};
}