Files
nixy/home/programs/nvim/plugins/utils.nix
Hadi f8b20c8f20 change nixvim config
Former-commit-id: 30009bcafb
2025-03-22 13:21:33 +01:00

26 lines
640 B
Nix

{ config, ... }: {
programs.nixvim = {
nixpkgs.config.allowUnfree = true; # For copilot
highlightOverride = {
WhichKeySeparator.bg = "#${config.lib.stylix.colors.base00}";
};
plugins = {
bufferline.enable = true;
copilot-vim.enable = true;
flash.enable = true;
tmux-navigator.enable = true;
todo-comments.enable = true;
lualine = { enable = true; };
treesitter = {
enable = true;
nixGrammars = true;
settings = {
ensure_installed = "all";
indent.enable = true;
highlight.enable = true;
};
};
};
};
}