summaryrefslogtreecommitdiff
path: root/plugin
AgeCommit message (Collapse)Author
2020-07-13Add module refactor.highlight_current_scopeStephan Seitz
2020-07-01Fix #136: Highlight of TSFloat should be Float not TSFloatStephan Seitz
2020-06-30refactor(refactor): use higher local apis and some cleanupSteven Sojka
2020-06-29highlights: declare links as defaultsThomas Vigouroux
2020-06-26highlight: use custom highlight groupsThomas Vigouroux
2020-06-20refactor: parser list and lang->ft/ft->langkiyan42
- move parser list in `parsers.lua` - most `ft` variable where changed to `lang`, `ft` is only used on autocmd binding, and lang is used for everything else. Functions have been defined to make the switch between `ft` and `lang`
2020-04-25refactor(textobj): use configs and don't use VimLThomas Vigouroux
2020-04-25textobj: add incremental scope selectionThomas Vigouroux
2020-04-24feat/refacto: improve configurationskiyan42
- You should now get the configs through functions - Configs for languages are now inside a local object called parsers - You can get the parser installation configurations with `get_parser_configs` - A new object has been initialized inside configs to specify module config (called config). - Provide functions to enable/disable a module on one buffer - Provide functions to enable/disable a module on all buffers, and if filetype is specified, for specific filetype - Provide function to determine if module is activated for a specified filetype
2020-04-21feat/refacto: add configs.lua, setup installkiyan42
- configs.lua holds the `repositories` data - install health moved to health.lua - plugins loads _root.setup() on startup - install and list command are available through vim > use them with `:TSInstall lang` and `:TSInstallInfo`
2020-04-19feat: create NvimTreesitter augroup at startupThomas Vigouroux
2020-04-19fix: add plugin fileThomas Vigouroux