diff options
author | Linnnus <[email protected]> | 2023-09-07 16:53:41 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-09-07 16:53:41 +0200 |
commit | edcc3acea595d3045253c3c2fe2462599c1c54e0 (patch) | |
tree | 81e17fc5fe4f0a52d30e8d0209c6080cc77eda32 /home/neovim/filetype.nix | |
parent | d31d1bae8c38e145cdbafe105401d9528b416779 (diff) |
Reorganize everything
Diffstat (limited to 'home/neovim/filetype.nix')
-rw-r--r-- | home/neovim/filetype.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/home/neovim/filetype.nix b/home/neovim/filetype.nix new file mode 100644 index 0000000..66d5e68 --- /dev/null +++ b/home/neovim/filetype.nix @@ -0,0 +1,20 @@ +# This module configures various syntax/filetype plugins for Neovim. + +{ pkgs, ... }: + +let + vim-noweb = pkgs.vimUtils.buildVimPlugin { + pname = "vim-noweb"; + version = "26-08-2023"; # day of retrieval + src = pkgs.fetchzip { + url = "https://metaed.com/papers/vim-noweb/vim-noweb.tgz"; + hash = "sha256-c5eUZiKIjAfjJ33l821h5DjozMpMf0CaK03QIkSUfxg="; + }; + }; +in +{ + programs.neovim.plugins = with pkgs.vimPlugins; [ + vim-nix + vim-noweb + ]; +} |