Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix manual installation instructions and include ftplugin
  • Loading branch information
klmr committed May 27, 2023
1 parent 8f0cb60 commit 3b0c847
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ Extends (presumed-available) groovy syntax highlighting.

### Manual

git clone https://github.com/LukeGoodsell/nextflow-vim ~/nextflow-vim;
mkdir ~/.vim/ftdetect; mkdir ~/.vim/ftplugin;
cp ~/nextflow-vim/ftdetect/nextflow.vim ~/.vim/ftdetect;
cp ~/nextflow-vim/syntax/nextflow.vim ~/.vim/ftplugin;
git clone https://github.com/LukeGoodsell/nextflow-vim.git
mkdir -p ~/.vim/{ftdetect,ftplugin,syntax}
for subdir in ftdetect ftplugin syntax; do
cp nextflow-vim/$subdir/* ~/.vim/$subdir
done

## Goals

Expand Down

0 comments on commit 3b0c847

Please sign in to comment.