16 lines
244 B
Nix
16 lines
244 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
myneovim = pkgs.myneovim.override {
|
||
|
viAlias = true;
|
||
|
vimAlias = true;
|
||
|
enableDevIcons = true;
|
||
|
enableTabby = true;
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
home.packages = [ myneovim ];
|
||
|
|
||
|
home.sessionVariables.EDITOR = "nvim";
|
||
|
}
|