Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 799 Bytes

File metadata and controls

36 lines (26 loc) · 799 Bytes

vim-language-nextflow

Vim plugin for Nextflow.

The original version of this plugin is based on Luke Goodsell's plugin and was later on improved.

Installation

NixVim

let
  vim-language-nextflow = pkgs.vimUtils.buildVimPlugin {
    name = "vim-language-nextflow";
    src = builtins.fetchGit {
      url = "https://github.com/nextflow-io/vim-language-nextflow";
      rev = "0be2ac1b325427617e4926c117fe1cdb6a8c3a4e"; # Change commit SHA accordingly!
    };
  };
in
{
  extraPlugins = [ vim-language-nextflow ];
}

VimPlug

call plug#begin('~/.vim/plugged')

" Change the commit SHA accordingly!
Plug 'nextflow-io/vim-language-nextflow', { 'commit': '0be2ac1b325427617e4926c117fe1cdb6a8c3a4e' }

call plug#end()