Files
nixos/modules/nixvim/nixvim.nix
2025-09-17 11:31:58 -04:00

47 lines
813 B
Nix

{ config, pkgs, lib, inputs, ... }:
{
imports = [
../which-key.nix
];
programs.nixvim = {
enable = true;
colorschemes = {
cyberdream = {
enable = true;
settings = {
borderless_telescope = true;
hide_fillchars = true;
italic_comments = true;
transparent = true;
};
};
};
plugins = {
alpha = {
enable = true;
theme = "dashboard";
};
fzf-lua = {
lazyLoad.enable = true;
settings = {
files = {
color_icons = true;
file_icons = true;
find_opts = {
__raw = "[[-type f -not -path '*.git/objects*' -not -path '*.env*']]";
};
multiprocess = true;
prompt = "󰆤 ";"
};
winopts = {
col = 0.3;
height = 0.4;
row = 0.99;
width = 0.93;
};
};
};
};
};
}