mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-03-24 12:42:51 +00:00
Moved neovim config to core nixos config
This commit is contained in:
18
nixos/core/programs/neovim.nix
Normal file
18
nixos/core/programs/neovim.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
unstablePkgs,
|
||||
...
|
||||
}: {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
withPython3 = true;
|
||||
withNodeJs = true;
|
||||
withRuby = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user