Merged from template master

This commit is contained in:
2024-01-28 11:35:10 +01:00
parent a55e972ecb
commit 360a40d01a
2 changed files with 39 additions and 16 deletions

View File

@@ -0,0 +1,16 @@
-- This file is automatically ran last in the setup process and is a good place to configure
-- augroups/autocommands and custom filetypes also this just pure lua so
-- anything that doesn't fit in the normal config locations above can go here
-- Set up custom filetypes
-- vim.filetype.add {
-- extension = {
-- foo = "fooscript",
-- },
-- filename = {
-- ["Foofile"] = "fooscript",
-- },
-- pattern = {
-- ["~/%.config/foo/.*"] = "fooscript",
-- },
-- }