Skip to content

Commit

Permalink
enabling tiltfile recognition with any file ending
Browse files Browse the repository at this point in the history
  • Loading branch information
ck3mp3r committed Jan 29, 2025
1 parent 8f1b694 commit 3faccce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/lua/config/autocmds.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
pattern = "Tiltfile",
pattern = { "Tiltfile", "tiltfile.*" },
callback = function()
vim.bo.filetype = "python"
end,
Expand Down

0 comments on commit 3faccce

Please sign in to comment.