diff options
Diffstat (limited to 'home/neovim')
-rw-r--r-- | home/neovim/default.nix | 1 | ||||
-rw-r--r-- | home/neovim/filetype.nix | 13 |
2 files changed, 0 insertions, 14 deletions
diff --git a/home/neovim/default.nix b/home/neovim/default.nix index 56f6171..f5ace73 100644 --- a/home/neovim/default.nix +++ b/home/neovim/default.nix @@ -1,7 +1,6 @@ # This file contains the HM configuration options for Neovim. {...}: { imports = [ - ./filetype.nix ./completion.nix ./editing-plugins.nix ]; diff --git a/home/neovim/filetype.nix b/home/neovim/filetype.nix deleted file mode 100644 index cb47420..0000000 --- a/home/neovim/filetype.nix +++ /dev/null @@ -1,13 +0,0 @@ -# This module configures various syntax/filetype plugins for Neovim. -{pkgs, ...}: { - programs.neovim.plugins = with pkgs; - with vimPlugins; [ - # Filetype plugins - nim-vim - vim-nix - vim-noweb - vim-janet - vim-crystal - vim-svelte - ]; -} |