From c0d156f728fa02a78c8bdc8c40ddac56850f37ea Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 9 Jul 2024 18:36:47 +0100 Subject: [PATCH] Use the `scss` filetype for `.pcss` files While `.pcss` files contain PostCSS code, the `scss` filetype gives better syntax highlighting than the standard `css` one. --- plugin/filetype.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/filetype.lua b/plugin/filetype.lua index 5a8f7f4..81ec0a1 100644 --- a/plugin/filetype.lua +++ b/plugin/filetype.lua @@ -3,6 +3,7 @@ vim.filetype.add { inc = "php", install = "php", module = "php", + pcss = "scss", theme = "php", }, }