dev theme

This commit is contained in:
Arthur Wambst 2025-02-20 11:58:51 +01:00
parent 024830d818
commit 6063490107

View File

@ -19,8 +19,17 @@
# Installation de Neovim en tant que package système
environment.systemPackages = [ neovim.packages.${pkgs.system}.neovim ];
# Optionnel : Activer des services liés à Neovim, si besoin
# Activer nvim
programs.neovim.enable = true;
extraConfigLua = ''
-- Add Dracula from Nix flake input
vim.opt.rtp:prepend("${inputs.plugin-dracula}");
-- Enable Dracula colorscheme
vim.cmd.colorscheme "dracula"
'';
};
};