dev theme

This commit is contained in:
Arthur Wambst 2025-02-20 14:05:02 +01:00
parent 0fa772f8b7
commit b4c3669967

View File

@ -24,14 +24,16 @@
# Activer nvim # Activer nvim
programs.neovim = { programs.neovim = {
enable = true; enable = true;
extraConfig = '' };
-- Add Dracula from Nix flake input
# Set up Neovim configuration manually
xdg.configFile."nvim/init.lua".text = ''
-- Add Dracula to runtimepath
vim.opt.rtp:prepend("${inputs.plugin-dracula}"); vim.opt.rtp:prepend("${inputs.plugin-dracula}");
-- Enable Dracula colorscheme -- Enable Dracula colorscheme
vim.cmd.colorscheme "dracula" vim.cmd.colorscheme "dracula"
''; '';
};
}; };
}; };