Fix blink.cmp to v1
This commit is contained in:
parent
e49a542664
commit
d16e74a111
|
|
@ -15,7 +15,10 @@
|
|||
};
|
||||
in {
|
||||
imports = [
|
||||
(import ./utils/desktop.nix {inherit inputs config pkgs; scale = 1.2;})
|
||||
(import ./utils/desktop.nix {
|
||||
inherit inputs config pkgs;
|
||||
scale = 1.2;
|
||||
})
|
||||
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
|
||||
];
|
||||
|
||||
|
|
@ -42,4 +45,7 @@ in {
|
|||
|
||||
programs.alacritty.settings.font.size = 13;
|
||||
programs.kitty.font.size = 13;
|
||||
systemd.user.services.vicinae.Service.Environment = [
|
||||
"QT_SCALE_FACTOR=1.5"
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,10 @@
|
|||
};
|
||||
in {
|
||||
imports = [
|
||||
(import ./utils/desktop.nix {inherit inputs config pkgs;})
|
||||
(import ./utils/desktop.nix {
|
||||
inherit inputs config pkgs;
|
||||
scale = 1.0;
|
||||
})
|
||||
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -3,14 +3,10 @@ local function is_dap_buffer()
|
|||
end
|
||||
|
||||
return {
|
||||
{
|
||||
'saghen/blink.compat',
|
||||
branch = 'v1',
|
||||
lazy = true,
|
||||
opts = {},
|
||||
},
|
||||
{
|
||||
'saghen/blink.cmp',
|
||||
branch = 'v1',
|
||||
version = "1.*",
|
||||
dependencies = {
|
||||
'rafamadriz/friendly-snippets',
|
||||
'honza/vim-snippets',
|
||||
|
|
@ -59,7 +55,6 @@ return {
|
|||
end,
|
||||
providers = {
|
||||
dadbod = { name = "Dadbod", module = "vim_dadbod_completion.blink" },
|
||||
dap = { name = "dap", module = "blink.compat.source" },
|
||||
avante = {
|
||||
module = 'blink-cmp-avante',
|
||||
name = 'Avante',
|
||||
|
|
|
|||
|
|
@ -6,7 +6,4 @@
|
|||
autoStart = true;
|
||||
};
|
||||
};
|
||||
systemd.user.services.vicinae.Service.Environment = [
|
||||
"QT_SCALE_FACTOR=1.5"
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ in {
|
|||
imports = [
|
||||
(import ../Common/default.nix {inherit inputs pkgs config;})
|
||||
(import ../Common/desktop.nix {inherit inputs pkgs config;})
|
||||
(import ../Common/nfs.nix {inherit pkgs serverIP;})
|
||||
(import ../Common/zfs.nix {inherit inputs pkgs config;})
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
boot.initrd.kernelModules = [];
|
||||
boot.kernelModules = ["kvm-intel"];
|
||||
boot.extraModulePackages = [];
|
||||
boot.zfs.forceImportRoot = false;
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "rpool/root";
|
||||
|
|
|
|||
Loading…
Reference in New Issue