1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

himalaya: fix config and add neovim wrapper

This commit is contained in:
2026-01-04 12:36:46 +01:00
parent c93806909f
commit ad7fc115c6
4 changed files with 24 additions and 2 deletions

22
packages/vim-email.nix Normal file
View File

@@ -0,0 +1,22 @@
{
neovim,
vimPlugins,
writers,
...
}:
let
vim-email = neovim.override {
extraName = "-email";
configure = {
customRC = ''
source ${./vim-kmein/shared.vim}
autocmd VimEnter * Himalaya
'';
packages.nvim.start = [
vimPlugins.telescope-nvim
vimPlugins.himalaya-vim
];
};
};
in
vim-email