Files
nixos-config/home/programs/nixvim-old/default.nix
Elias Schröter d7b58e2216 nixvim
install initial nixvim
2026-04-08 10:13:11 +02:00

22 lines
341 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
./plugins
];
programs.nixvim = {
extraPackages = with pkgs; [
texliveFull
texlivePackages.standalone
texlivePackages.relsize # needed for BA
# papis-nvim
];
extraConfigVim = ''
filetype plugin on
set nocompatible
syntax on
'';
};
}