.dotfiles/.config/home-manager/nvim.nix

11 lines
203 B
Nix
Raw Normal View History

2023-04-11 11:08:44 +00:00
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
nodejs # needed for lsp
fzf # fuzzy finder
neovim # alternative to vim
];
}