blob: 0af940e127d1fdb0b0cbdd18d6dfba54e577fe7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }:
let
custom_vim = pkgs.vim_configurable.customize {
name = "vim";
vimrcConfig = (import ./custom.nix { pkgs = pkgs; });
};
in pkgs.lib.overrideDerivation custom_vim ( o: {
gui = true;
ftNixSupport = true;
cscopeSupport = true;
fontsetSupport = true;
multibyteSupport = true;
} )
|