diff --git a/README.md b/README.md
index bfd2653..363cd17 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,26 @@
# coc-html-css-support
-> fork from a [ecmel/vscode-html-css](https://github.com/ecmel/vscode-html-css) | [HTML CSS Support](https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css)
+> fork from a [ecmel/vscode-html-css](https://github.com/ecmel/vscode-html-css) | [HTML CSS Support](https://marketplace.visualstudio.com/items?itemName=ecmel.vscode-html-css) | and the origin [yaegassy/coc-html-css-support](https://github.com/yaegassy/coc-html-css-support)
-HTML id and class attribute "completion" for [coc.nvim](https://github.com/neoclide/coc.nvim).
+HTML id and class attribute "completion" for [coc.nvim](https://github.com/neoclide/coc.nvim). With on workspace css finding
## Install
-`:CocInstall coc-html-css-support`
+### Using Lazy
+```lua
+{
+ "Hamadah2O2/coc-html-css-support",
+ build = "yarn install --frozen-lockfile",
+ config = function()
+ vim.cmd([[autocmd BufWritePost *.css CocCommand html-css-support.dispose]]) -- Automate dispose html-css-support on css BufWritePost
+ end
+}
+```
+
+### Using CocInstall command
+`:CocInstall @hamadah2o2/coc-html-css-support`
## Features
@@ -17,6 +29,7 @@ HTML id and class attribute "completion" for [coc.nvim](https://github.com/neocl
- Supports template inheritance.
- Supports additional style sheets.
- Supports other HTML like languages.
+- Supports style sheets finding on current working directory.
- Command to make `html.customData` built-in in `coc-html-css-support` available at the workspace level.
- Require [coc-html](https://github.com/neoclide/coc-html)
@@ -75,7 +88,8 @@ You can read more about customData in the following repositories.
## Thanks
-- [ecmel/vscode-html-css](https://github.com/ecmel/vscode-html-css) : The origin of this repository.
+- [yaegassy/coc-html-css-support](https://github.com/yaegassy/coc-html-css-support)
+- [ecmel/vscode-html-css](https://github.com/ecmel/vscode-html-css) : The origin of yaegassy/coc-html-css-support repository.
## License
diff --git a/package.json b/package.json
index 18656bd..8447194 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
- "name": "coc-html-css-support",
- "version": "0.5.3",
- "description": "HTML id and class attribute completion for coc.nvim",
- "author": "yaegassy