dev theme
This commit is contained in:
parent
024830d818
commit
6063490107
13
flake.nix
13
flake.nix
@ -18,9 +18,18 @@
|
||||
nixosModules.neovim = { config, pkgs, ...}: {
|
||||
# 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
|
||||
programs.neovim.enable = true;
|
||||
|
||||
# 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"
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user