23 lines
409 B
Nix
23 lines
409 B
Nix
_:
|
|
|
|
{
|
|
imports = [ ./config ./plugins ];
|
|
|
|
config = {
|
|
# Use <Space> as leader key
|
|
# globals.mapleader = " ";
|
|
|
|
# Set 'vi' and 'vim' aliases to nixvim
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
|
|
# Setup clipboard support
|
|
clipboard = {
|
|
# Use xsel as clipboard provider
|
|
# providers.xsel.enable = true;
|
|
|
|
# Sync system clipboard
|
|
register = "unnamedplus";
|
|
};
|
|
};
|
|
}
|