diff --git a/README.md b/README.md index baabed1..5a3abed 100644 --- a/README.md +++ b/README.md @@ -38,114 +38,51 @@ with `my_var` or vice versa? This plugin is for you! ## 🔽 Installation -
- |
-
- |
-
---|---|
- -[folke/lazy.nvim](https://github.com/folke/lazy.nvim) - - | -+### [Lazy](https://github.com/folke/lazy.nvim) ```lua --- stable version require("lazy").setup({ "chenasraf/text-transform.nvim", + -- stable version version = "*", -- or: tag = "stable" - dependencies = { - -- for Telescope popup - 'nvim-telescope/telescope.nvim', - 'nvim-lua/plenary.nvim', - }, -}) --- dev version -require("lazy").setup({ - "chenasraf/text-transform.nvim", - branch = "develop", - dependencies = { - -- for Telescope popup - 'nvim-telescope/telescope.nvim', - 'nvim-lua/plenary.nvim', - }, + -- dev version + -- branch = "develop", + -- Optional - for Telescope popup + dependencies = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' } }) ``` - | -
- -[wbthomason/packer.nvim](https://github.com/wbthomason/packer.nvim) - - | -+### [Packer](https://github.com/wbthomason/packer.nvim) ```lua --- stable version use { "chenasraf/text-transform.nvim", + -- stable version tag = "stable", - requires = { - -- for Telescope popup - 'nvim-telescope/telescope.nvim', - 'nvim-lua/plenary.nvim', - } -} --- dev version -use { "chenasraf/text-transform.nvim", - branch = "develop", - requires = { - -- for Telescope popup - 'nvim-telescope/telescope.nvim', - 'nvim-lua/plenary.nvim', - } + -- dev version + -- branch = "develop", + -- Optional - for Telescope popup + requires = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' } } ``` - | -
- -[junegunn/vim-plug](https://github.com/junegunn/vim-plug) - - | -+### [Plug](https://github.com/junegunn/vim-plug) ```vim --- Dependencies - for Telescope popup -Plug "nvim-telescope/telescope.nvim" -Plug "nvim-lua/plenary.nvim" - --- stable version -Plug "chenasraf/text-transform.nvim", { - "tag": "stable", -} --- dev version -Plug "chenasraf/text-transform.nvim", { - "branch": "develop", -} +" Dependencies - optional for Telescope popup +Plug 'nvim-telescope/telescope.nvim' +Plug 'nvim-lua/plenary.nvim' + +" stable version +Plug 'chenasraf/text-transform.nvim', { 'tag': 'stable' } +" dev version +Plug 'chenasraf/text-transform.nvim', { 'branch': 'develop' } ``` - | -