This commit is contained in:
Ivan Dimitrov 2023-11-18 10:14:24 +02:00
parent fe41f5be0f
commit a1d612cc80
2 changed files with 0 additions and 35 deletions

View File

@ -1,6 +0,0 @@
{ pkgs, lib, ... }: {
programs.neomutt = {
enable = true;
vimKeys = true;
};
}

View File

@ -1,29 +0,0 @@
{ pkgs, lib, ... }:
let grammars = with pkgs.vimPlugins.nvim-treesitter-parsers; [
];
in
{
programs.neovim = {
extraPackages = with pkgs; [
];
plugins = with pkgs.vimPlugins; grammars ++ [
firenvim
];
extraLuaConfig = ''
vim.g.firenvim_config = {
globalSettings = { alt = "all" },
localSettings = {
[".*"] = {
cmdline = "neovim",
content = "text",
priority = 0,
selector = "textarea",
takeover = "never"
}
}
}
'';
};
}