mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-06-17 17:24:38 +02:00
16 lines
270 B
Nix
16 lines
270 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./keybindings.nix
|
|
./opts.nix
|
|
./plugins
|
|
];
|
|
|
|
colorschemes.catppuccin.enable = true;
|
|
clipboard = {
|
|
register = "unnamedplus";
|
|
providers.wl-copy.enable = true;
|
|
providers.wl-copy.package = pkgs.wl-clipboard;
|
|
};
|
|
}
|