From c8727bfbf03f6ccfeacc0522d60270d7afc20705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Sun, 27 Nov 2022 15:38:18 -0800 Subject: [PATCH] update readme --- README.md | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 519dd7e..0bdfd9d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,41 @@ Xonsh syntax file from vim. Mostly stolen from python_vim and PRs are welcome! ### Install +#### The old school, manual way + ``` -git clone --depth 1 https://github.com/linkinpark342/xonsh-vim ~/.vim +git clone --depth 1 https://github.com/celediel/xonsh-vim ~/.vim +``` + +#### Or using your favourite plugin manager + +#### neovim: + +##### Packer + +```lua +require('packer').startup(function() + use {'celediel/xonsh-vim'} +end) +``` + +##### Paq + +```lua +require "paq" { + {'celediel/xonsh-vim'}; +} +``` +#### neovim or vim: + +##### vim-plug + +```vim +Plug 'celediel/xonsh-vim' +``` + +##### dein + +```vim +call dein#add('celediel/xonsh-vim') ```