Improve neovim-specific configs

This commit is contained in:
Tobias Reisinger 2023-04-11 13:08:44 +02:00
parent 531786f609
commit 0b63872d62
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
7 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,10 @@
{ 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
];
}