Compare commits

..

1 commit

Author SHA1 Message Date
d816faa25b
feat(nvim): setup for ipynb dev work
All checks were successful
/ check (push) Successful in 26s
/ build (audiomenu) (push) Successful in 1s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 16s
/ build (nvim) (push) Successful in 11s
Setup:
- molten (run python code)
- otter (lsp in markdown codeblocks)
- jupytext (convert .ipynb files to .md files transparently)
- image (display images inside neovim (e.g. matplotlib graphs))
2024-10-06 14:28:25 +02:00
2 changed files with 11 additions and 13 deletions

View file

@ -1,24 +1,22 @@
{ inputs, ... }: { inputs, ... }:
let
standalone = ../nvim/standalone.nix;
in
{ {
flake.overlays.nixvim = inputs.nixvim.overlays.default; flake.overlays.nixvim = inputs.nixvim.overlays.default;
perSystem = perSystem =
{ pkgs, system, ... }: { pkgs, system, ... }:
{ let
# Check standalone nvim build nixvimLib = inputs.nixvim.lib.${system};
checks.nvim = inputs.nixvim.lib.${system}.check.mkTestDerivationFromNixvimModule { nixvim = inputs.nixvim.legacyPackages.${system};
module = {
inherit pkgs; inherit pkgs;
module = ../nvim/standalone.nix; module = ../nvim/standalone.nix;
}; };
in
{
# Check standalone nvim build
checks.nvim = nixvimLib.check.mkTestDerivationFromNixvimModule module;
# Nvim standalone module # Nvim standalone module
packages.nvim = inputs.nixvim.legacyPackages.${system}.makeNixvimWithModule { packages.nvim = nixvim.makeNixvimWithModule module;
inherit pkgs;
module = standalone;
};
}; };
} }

View file

@ -5,7 +5,7 @@
... ...
}: }:
let let
inherit (helpers) mkRaw; inherit (helpers) mkRaw enableExceptInTests;
in in
{ {
config.plugins = { config.plugins = {
@ -160,7 +160,7 @@ in
}; };
}; };
gitsigns.enable = true; gitsigns.enable = true;
image.enable = true; image.enable = enableExceptInTests;
jupytext = { jupytext = {
enable = true; enable = true;
settings.custom_language_formatting.python = { settings.custom_language_formatting.python = {