aboutsummaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAge
* docs: fix unquoted string in READMEStel Abrego2023-02-21
|
* Add missing space in README's setup instructionsMatt Kelly2022-10-29
| | | Just a simple typo fix. Thanks for the great tool.
* Bump required neovim version to 0.7Akianonymus2022-09-15
| | | | why are you using the older version ?
* [FEATURE] Add support for sass variablesAkianonymus2022-09-14
| | | | | | | | | | | | | | | | | | | | | | | | Import support import using use and import keyword multiple imports in single line multiple imports in multiple lines ( using commas ) recursive imports watch imports for changes and automatically rehighlight buffer buffer variables recursive variables support multiple variables in single line parse imported files only when they are changed Loosely based on https://github.com/norcalli/nvim-colorizer.lua/pull/22/files
* Minor README tweaks including updating the doc links (#19)Rolv Apneseth2022-09-10
| | | | | * Minor fix - removed "." in link for nvim-highlight-colors which was causing it to return a 404 * Updated doc links in the readme
* Updated packer example use line to point to the NvChad fork of ↵rolv2022-09-09
| | | | nvim-colorizer.lua
* Minor fix for example options given in README.md so that it is valid Luarolv2022-09-09
|
* tailwind: Use true for normal modeAkianonymus2022-09-07
| | | | For first start, wait 100 ms before trying to get some info from the lsp
* Fix https://github.com/NvChad/nvim-colorizer.lua/issues/12 | Add support for ↵Akianonymus2022-09-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tailwind colors Three methods normal: Use the hardcoded colors lsp: Use lsp to fetch colors both: Use the hardcoded colors and use lsp too if available although this is hardcoding, but working with what we got, has all the colors tailwind provides, atleast the prebuilt ones for new defined colors, have to enable the lsp method Generated using https://github.com/tailwindlabs/tailwindcss/raw/master/src/public/colors.js and https://github.com/tailwindlabs/tailwindcss/raw/master/src/corePlugins.js use a different namespace than default for tailwind lsp method only try to use lsp method if attached Misc changes export the user_default_settings to doc clear name space after the lines are processed for a smooth transition cleanup some code
* README: Update doc linkAkianonymus2022-09-03
|
* fragment | Implement better autocmd management | refactorAkianonymus2022-09-03
| | | | | | | | | | | | add a all_buffers option - colorizer will activate on all buffers, empty or not, still respect filetypes option handle errors when detach is called multiple times from the same buffer use bufdelete and bufdelete to remove the autocmds use a more efficient compile parse_fn function use custom ldoc template to generate vim help
* Fix installation linksitiom2022-08-07
|
* Update readme with virtualtext modeBrian Chen2022-02-25
|
* Allow lower case color namesAkianonymus2022-02-07
|
* using virtualtext as one option for highlightDingcheng Yue2022-02-07
|
* Update install instructionAkin2020-06-11
| | | This PR updates the README to make it clear to users that they have to add the lua setup line after of the block where the plugin is added. I just hit this issue and found #38 which explained and resolved it for me so I've added it to the README. Hopefully that helps :+1:
* Implement ColorizerToggle commandJames Reed2019-11-07
| | | | Closes #27.
* Change wording in README.Ashkan Kiani2019-10-18
|
* Add notes on compatibility to the README.Ashkan Kiani2019-10-18
|
* Update color functions (#13)Ashkan Kiani2019-10-18
| | | | | | - Add hsl, hsla, rgba, RRGGBBAA - Redo the parser for rgb,rgba,hsl,hsla codes. - Fix the trie implementation. - Bugfix and refactor alpha/error handling
* Allow excluding files from highlight with '*' (#11)Ashkan Kiani2019-10-18
| | | Fixes GH-5
* Update with fully qualified settings and commands.Ashkan Kiani2019-10-18
| | | | | | | | - Add command documentation and new commands. - Add new settings which have a better naming scheme. - Fix reloading settings and add a command to detach highlighter. - Fix #RGB pattern like for #define where it will highlight the #def part.
* Add FileType information to the README (#10)Filipe Kiss2019-10-18
| | | | * Add FileType information to the README * Add ColorizerAttachToBuffer command
* Merge branch 'master' of github.com:norcalli/nvim-colorizer.luaAshkan Kiani2019-10-17
|\
| * Update README.mdAshkan Kiani2019-10-17
| |
* | Add Demo.gifAshkan Kiani2019-10-17
|/
* ./README.mdAshkan Kiani2019-10-17
|
* ./README.mdAshkan Kiani2019-10-17
|
* Add readme, docs, rgb(), #RGB, and optionsAshkan Kiani2019-10-17
- Add support for `rgb(...)` functions behind an option gate. - Highlight #RGB codes. - Add options, like `rgb_fn` and `no_names` - Add luadoc.