users/jordan: add neovide
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m30s

This commit is contained in:
2025-10-25 20:18:16 +01:00
parent e8d8581b9d
commit 614b22f85a
2 changed files with 27 additions and 1 deletions

View File

@@ -11,6 +11,17 @@
viAlias = true;
vimAlias = true;
extraConfigLua = ''
if vim.g.neovide then
vim.g.neovide_opacity = 0.8
vim.g.neovide_normal_opacity = 0.8
-- vim.g.neovide_cursor_vfx_mode = "pixiedust"
vim.g.neovide_floating_blur_amount_x = 2.0
vim.g.neovide_floating_blur_amount_y = 2.0
vim.g.neovide_floating_corner_radius = 0.2
end
'';
opts = {
number = true;
tabstop = 2;
@@ -35,6 +46,14 @@
providers.wl-copy.enable = true;
};
colorschemes.onedark = {
enable = true;
settings = {
style = "darker";
transparent = true;
};
};
plugins.cmp = {
enable = true;
autoEnableSources = true;

View File

@@ -299,7 +299,14 @@ in
enable = true;
settings = {
background = "#000000";
background_opacity = 0.7;
background_opacity = 0.8;
};
};
programs.neovide = {
enable = true;
settings = {
font.size = 16.0;
};
};