nixos-config/configs/nixvim/fiesta/default.nix

16 lines
280 B
Nix
Raw Normal View History

2024-01-25 14:51:05 +00:00
{ config, lib, pkgs, ... }:
{
colorschemes.kanagawa.enable = true;
clipboard.providers.wl-copy.enable = true;
clipboard.providers.xclip.enable = true;
plugins.neorg.enable = true;
plugins.nvim-autopairs.enable = true;
extraPlugins = with pkgs; [
decker
];
}