mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
8f8012e435
using base16 color plugin instead of homemade
13 lines
206 B
Nix
13 lines
206 B
Nix
{ pkgs, ... }: {
|
|
|
|
type = "app";
|
|
|
|
program = "${
|
|
(import ../modules/common/neovim/package {
|
|
inherit pkgs;
|
|
colors = (import ../colorscheme/gruvbox).dark;
|
|
})
|
|
}/bin/nvim";
|
|
|
|
}
|