mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
26 lines
624 B
Nix
26 lines
624 B
Nix
{ config, ... }: {
|
|
programs.nixvim = {
|
|
highlightOverride = {
|
|
FloatBorder.fg = "#${config.lib.stylix.colors.base0D}";
|
|
};
|
|
nixpkgs.config = { allowUnfree = true; };
|
|
plugins = {
|
|
copilot-vim.enable = true;
|
|
flash.enable = true;
|
|
tmux-navigator.enable = true;
|
|
comment.enable = true;
|
|
nvim-autopairs.enable = true;
|
|
todo-comments.enable = true;
|
|
treesitter = {
|
|
enable = true;
|
|
nixGrammars = true;
|
|
settings = {
|
|
ensure_installed = "all";
|
|
indent.enable = true;
|
|
highlight.enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|