diff --git a/README.md b/README.md index 5f7092c..819ed47 100644 --- a/README.md +++ b/README.md @@ -4,36 +4,36 @@ Vim syntax files for [justfiles](https://github.com/casey/just). ## Installation -### [vim-plug](https://github.com/junegunn/vim-plug) - -```vim -Plug 'NoahTheDuke/vim-just' -``` - -### [Pathogen](https://github.com/tpope/vim-pathogen) +### [Vim8 Package](https://vimhelp.org/repeat.txt.html#packages) ```bash -cd ~/.vim/bundle +cd ~/.vim/pack/YOUR-NAMESPACE-HERE/start/ git clone https://github.com/NoahTheDuke/vim-just.git ``` -### [Vim8 Package](https://vimhelp.org/repeat.txt.html#packages) +### With a plugin manager -```bash -cd ~/.vim/pack/YOUR-NAMESPACE-HERE/start/ -git clone https://github.com/NoahTheDuke/vim-just.git +#### [vim-plug](https://github.com/junegunn/vim-plug) + +```vim +Plug 'NoahTheDuke/vim-just' ``` -### [lazy.nvim](https://github.com/folke/lazy.nvim) +#### [lazy.nvim](https://github.com/folke/lazy.nvim) ```lua { "NoahTheDuke/vim-just", - event = { "BufReadPre", "BufNewFile" }, - ft = { "\\cjustfile", "*.just", ".justfile" }, + ft = { "just" }, } ``` +### Third-party packages + +For questions or issues when using these packages, contact the package's maintainer. + +[![Packaging status](https://repology.org/badge/vertical-allrepos/vim:vim-just.svg)](https://repology.org/project/vim:vim-just/versions) + ---------- ### Updating `git clone` based installations