Files
nixos/home/modules/baseline/vim.nix
T
Greg Hellings c12ed1b8a9 Separate nixvim config
Separating the actual nixvim config out to its own file allows me to
include it directly in the devshells that I create, incluing all of the
configuration, plugins, and settings that I have. Man, the power of
nixvim is awesome
2024-10-04 09:33:53 -05:00

10 lines
266 B
Nix

{ pkgs, ... }:
{
# The Hack font is used in the Fugitive sidebars
fonts.fontconfig.enable = true;
home.packages = [ (pkgs.nerdfonts.override { fonts = [ "Hack" ]; }) ];
programs.nixvim = (import ./vim/config.nix { inherit pkgs; }) // { enable = true; };
}