nvim-tree / nvim-web-devicons

lua `fork` of vim-web-devicons for neovim
MIT License
1.93k stars 183 forks source link

Add TypoScript (TYPO3) icons #327

Closed Teddytrombone closed 2 months ago

Teddytrombone commented 8 months ago

Add support for .typoscript, .tsconfig and ext_typoscript_setup.txt to improve the visibility of TYPO3 specific files. The TYPO3 icon is already part of nerdfonts (e772)

Here's my current local nvim config for this:

require("nvim-web-devicons").setup({
    local typoscript = {
        icon = "",
        color = "#FF8700",
        name = "TypoScript",
    }

    override_by_filename = {
        ["ext_typoscript_setup.txt"] = typoscript,
    },
    override_by_extension = {
        ["typoscript"] = typoscript,
        ["tsconfig"] = typoscript,
    },
})