Fix css tag integration for neovim

This commit is contained in:
Daniel Siepmann 2024-02-12 07:13:47 +01:00
parent b6a7813085
commit 262b218685
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
4 changed files with 6 additions and 7 deletions

View file

@ -17,6 +17,8 @@
--exclude=*typo3temp/*
--exclude=*vendor/composer*
--exclude=*node_modules/*
--exclude=*var/*
--exclude=*fileadmin/*
--exclude=*typo3_src*
@ -59,7 +61,7 @@
--languages=
--languages=+c
# --languages=+css
--languages=+css
# --languages=+go
--languages=+php
--languages=+apache

View file

@ -323,6 +323,7 @@ in {
phpdoc
rst
scss
css
sql
typescript
vim

View file

@ -92,16 +92,12 @@ let g:tagbar_type_rst = {
\ 'sort': 0,
\ }
" SOURCE: https://github.com/mtscout6/vim-tagbar-css/blob/master/plugin/tagbar-css.vim
let g:tagbar_type_css = {
\ 'ctagstype' : 'css',
\ 'kinds' : [
\ 'v:variables',
\ 'c:classes',
\ 'i:IDs',
\ 't:tags',
\ 'm:medias',
\ 'k:comments',
\ 's:selectors',
\ ]
\}

View file

@ -3,7 +3,7 @@ require('telescope').setup({
ctags_outline = {
ctags = { 'ctags' },
ft_opt = {
css = '--css-types=vcit',
css = '--css-types=ics',
fluid = '--xml-types=si',
markdown = '--Markdown-types=csStT',
rst = '--reStructuredText-types=csSt',