initial commit
This commit is contained in:
commit
53dc0a539d
13 changed files with 701 additions and 0 deletions
12
nixos/nvim.nix
Executable file
12
nixos/nvim.nix
Executable file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }: {
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [ neovim ];
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue