feat(home-manager): add support for neovim (#27)
This commit is contained in:
parent
12733d64c3
commit
20a4a5d3f2
2 changed files with 30 additions and 0 deletions
|
@ -11,6 +11,7 @@ in {
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./helix.nix
|
./helix.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
|
./neovim.nix
|
||||||
./polybar.nix
|
./polybar.nix
|
||||||
./sway.nix
|
./sway.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
|
|
29
modules/home-manager/neovim.nix
Normal file
29
modules/home-manager/neovim.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.programs.neovim.catppuccin;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.programs.neovim.catppuccin = lib.ctp.mkCatppuccinOpt "neovim" config;
|
||||||
|
|
||||||
|
config.programs.neovim = with lib; mkIf cfg.enable {
|
||||||
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
{
|
||||||
|
plugin = catppuccin-nvim;
|
||||||
|
config = ''
|
||||||
|
lua << EOF
|
||||||
|
local compile_path = vim.fn.stdpath("cache") .. "/catppuccin-nvim"
|
||||||
|
vim.fn.mkdir(compile_path, "p")
|
||||||
|
vim.opt.runtimepath:append(compile_path)
|
||||||
|
|
||||||
|
require("catppuccin").setup({
|
||||||
|
compile_path = compile_path,
|
||||||
|
flavour = "${cfg.flavour}",
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_command("colorscheme catppuccin")
|
||||||
|
EOF
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue