summaryrefslogtreecommitdiff
path: root/modules/common/neovim
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2024-01-07 23:57:45 +0300
committerAzat Bahawi <azat@bahawi.net>2024-01-07 23:57:45 +0300
commit5a4e7e22a6975ebc3de70e68446ff53109c64170 (patch)
tree0004db42ea38a75bf9dc413f6b77e501f2270fad /modules/common/neovim
parent458e552a9da54b2bb40f3e5fd9091117ade5063c (diff)
2024-01-07
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;
- };
- };
- };
- };
-}