diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-01-07 23:57:45 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-01-07 23:57:45 +0300 |
commit | 5a4e7e22a6975ebc3de70e68446ff53109c64170 (patch) | |
tree | 0004db42ea38a75bf9dc413f6b77e501f2270fad /modules/common/neovim | |
parent | 2024-01-05 (diff) |
2024-01-07
Diffstat (limited to '')
-rw-r--r-- | modules/common/neovim/default.nix | 27 |
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; - }; - }; - }; - }; -} |