fix temp bug

This commit is contained in:
Hadi
2025-04-01 11:25:47 +02:00
parent 09698790b9
commit 757224a73f

View File

@@ -1,4 +1,4 @@
{ config, ... }: { { config, lib, pkgs, ... }: {
programs.nixvim = { programs.nixvim = {
nixpkgs.config.allowUnfree = true; # For copilot nixpkgs.config.allowUnfree = true; # For copilot
highlightOverride = { highlightOverride = {
@@ -6,7 +6,11 @@
}; };
plugins = { plugins = {
bufferline.enable = true; bufferline.enable = true;
# copilot-vim.enable = true; copilot-vim = {
enable = true;
# FIXME: Temp issue solving
settings.node_command = lib.getExe pkgs.nodejs_20;
};
flash.enable = true; flash.enable = true;
tmux-navigator.enable = true; tmux-navigator.enable = true;
todo-comments.enable = true; todo-comments.enable = true;