mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-03-07 20:18:07 +01:00
refactor: group plugins and clipboard configuration
This commit is contained in:
@@ -1,8 +1,9 @@
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
plugins.lspkind.enable = true;
|
plugins = {
|
||||||
plugins.cmp-nvim-lsp-signature-help.enable = true;
|
lspkind.enable = true;
|
||||||
plugins.cmp = {
|
cmp-nvim-lsp-signature-help.enable = true;
|
||||||
|
cmp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoEnableSources = true;
|
autoEnableSources = true;
|
||||||
settings = {
|
settings = {
|
||||||
@@ -24,4 +25,5 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,9 +12,11 @@
|
|||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
];
|
];
|
||||||
clipboard.register = "unnamedplus";
|
clipboard = {
|
||||||
clipboard.providers.wl-copy.enable = true;
|
register = "unnamedplus";
|
||||||
clipboard.providers.wl-copy.package = pkgs.wl-clipboard;
|
providers.wl-copy.enable = true;
|
||||||
clipboard.providers.xclip.enable = true;
|
providers.wl-copy.package = pkgs.wl-clipboard;
|
||||||
clipboard.providers.xclip.package = pkgs.xclip;
|
providers.xclip.enable = true;
|
||||||
|
providers.xclip.package = pkgs.xclip;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user