mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
nixvimConfigs/fiesta/setups/devenvs: init
This commit is contained in:
parent
2ccd79d6b4
commit
54c66be82f
@ -5,6 +5,7 @@
|
||||
|
||||
config = {
|
||||
nixvimConfigs.fiesta.setups = {
|
||||
devenvs.enable = true;
|
||||
snippets.enable = true;
|
||||
ui.enable = true;
|
||||
completion.enable = true;
|
||||
|
@ -3,6 +3,7 @@
|
||||
./setups/completion.nix
|
||||
./setups/debugging.nix
|
||||
./setups/desktop-utils.nix
|
||||
./setups/devenvs.nix
|
||||
./setups/fuzzy-finder.nix
|
||||
./setups/lsp.nix
|
||||
./setups/note-taking.nix
|
||||
|
15
configs/nixvim/fiesta/modules/setups/devenvs.nix
Normal file
15
configs/nixvim/fiesta/modules/setups/devenvs.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
nixvimCfg = config.nixvimConfigs.fiesta;
|
||||
cfg = nixvimCfg.setups.devenvs;
|
||||
in
|
||||
{
|
||||
options.nixvimConfigs.fiesta.setups.devenvs.enable =
|
||||
lib.mkEnableOption "integration for typical devenvs";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
plugins.direnv.enable = true;
|
||||
plugins.nvim-remote-containers.enable = true;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user