nvim-web-devicons icon indicating copy to clipboard operation
nvim-web-devicons copied to clipboard

Add TypoScript (TYPO3) icons

Open Teddytrombone opened this issue 2 years ago • 0 comments

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,
	},
})

Teddytrombone avatar Oct 22 '23 18:10 Teddytrombone