diff --git a/common/nvim/nvim.nix b/common/nvim/nvim.nix index bcc14c7..c9ce2cf 100644 --- a/common/nvim/nvim.nix +++ b/common/nvim/nvim.nix @@ -1,16 +1,24 @@ -{ config, pkgs, inputs, ... }: +{ pkgs, lib, ... }: { home.packages = with pkgs; [ # needed for the nvim config, neovim itself is a system package already ripgrep ]; - programs.nixvim = { + programs.neovim = { enable = true; defaultEditor = true; viAlias = true; vimAlias = true; + extraConfig = lib.fileContents ./nvim.lua; + }; + programs.nixvim = { + enable = false; + defaultEditor = true; + viAlias = true; + vimAlias = true; + colorschemes.tokyonight = { enable = true; style = "night";