astronixvim/default.nix

24 lines
290 B
Nix
Raw Permalink Normal View History

_:
{
imports = [
./plugins
./config
];
config = {
globals.mapleader = " ";
viAlias = true;
vimAlias = true;
clipboard = {
providers = {
xsel.enable = true;
wl-copy.enable = true;
};
register = "unnamedplus";
};
};
}