diff options
author | rubiigen <alyxwren@proton.me> | 2024-04-23 22:01:32 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2024-04-23 22:20:27 +0100 |
commit | a558df302bb8f218c79167b21c637a50db092c6f (patch) | |
tree | 9bcd3346cbd307e869ea390dcb089f4d637d5647 /common/nvim-flake.nix | |
parent | 3d29e532d973a7dd0036ccdeee46774a4c6d6010 (diff) |
remove common folder at root, why was this still there?
Diffstat (limited to 'common/nvim-flake.nix')
-rw-r--r-- | common/nvim-flake.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/common/nvim-flake.nix b/common/nvim-flake.nix deleted file mode 100644 index daed404..0000000 --- a/common/nvim-flake.nix +++ /dev/null @@ -1,23 +0,0 @@ -{inputs, ...}: { - - imports = [ inputs.neovim-flake.homeManagerModules.default ]; - # enable programs - programs = { - neovim-flake = { - enable = true; - settings = { - vim.languages = { - nix.enable = true; - nix.lsp.enable = true; - ts.enable = true; - python.enable = true; - html.enable = true; - }; - vim.lsp = { - enable = true; - }; - }; - }; - # ... add more programs as you see fit - }; -} |