Skip to content

Commit

Permalink
Merge pull request #64 from NoahTheDuke/readme-update
Browse files Browse the repository at this point in the history
Reorganize and update installation instructions
  • Loading branch information
NoahTheDuke authored Dec 13, 2023
2 parents a976161 + 8d011a7 commit db122b7
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit db122b7

Please sign in to comment.