nixvim
install initial nixvim
This commit is contained in:
21
home/programs/nixvim-old/default.nix
Normal file
21
home/programs/nixvim-old/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ 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
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user