Compare commits

..

1 commit

Author SHA1 Message Date
af1b8ccfa4
feat(nvim): setup for ipynb dev work
Some checks failed
/ check (push) Failing after 58s
/ build (audiomenu) (push) Successful in 38s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 28s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2m1s
/ 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:11:46 +02:00
2 changed files with 13 additions and 11 deletions

View file

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

View file

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