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