aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/filetype.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua
index 4d411bb..7cdb1a8 100644
--- a/lua/plugins/filetype.lua
+++ b/lua/plugins/filetype.lua
@@ -224,6 +224,9 @@ vis.ftdetect.filetypes = {
io_lang = {
ext = { "%.io$" },
},
+ janet = {
+ ext = { "%.janet$" },
+ },
java = {
ext = { "%.bsh$", "%.java$" },
},
@@ -462,6 +465,9 @@ vis.ftdetect.filetypes = {
-- Do *not* list mime "text/plain" here, it is covered below,
-- see 'try text lexer as a last resort'
},
+ todotxt = {
+ ext = { "^todo.txt$", "^Todo.txt$", "^done.txt$", "^Done.txt$" },
+ },
toml = {
ext = { "%.toml$" },
},