summaryrefslogtreecommitdiff
path: root/modules/common/neovim
diff options
context:
space:
mode:
Diffstat (limited to 'modules/common/neovim')
-rw-r--r--modules/common/neovim/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/common/neovim/default.nix b/modules/common/neovim/default.nix
deleted file mode 100644
index 1e5f103..0000000
--- a/modules/common/neovim/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- config,
- inputs,
- lib,
- ...
-}:
-with lib; let
- cfg = config.nixfiles.modules.neovim;
-in {
- options.nixfiles.modules.neovim.enable = mkEnableOption "NeoVim";
-
- config = mkIf cfg.enable {
- hm = {
- imports = [inputs.nixvim.homeManagerModules.nixvim];
-
- programs.nixvim = {
- enable = true;
-
- plugins = {
- lsp.enable = true;
- nix.enable = true;
- surround.enable = true;
- };
- };
- };
- };
-}