From 8d011a74744b9c53ebf495670769fd5ca905341d Mon Sep 17 00:00:00 2001 From: laniakea64 Date: Tue, 12 Dec 2023 19:18:37 -0500 Subject: [PATCH] Reorganize and update installation instructions --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) 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