this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvim: set filetype for tiltfiles

+11 -11
+11 -11
vim/astronvim/init.lua
··· 186 186 vim.cmd('autocmd FileType markdown set wrap linebreak nolist') 187 187 188 188 -- Set up custom filetypes 189 - -- vim.filetype.add { 190 - -- extension = { 191 - -- foo = "fooscript", 192 - -- }, 193 - -- filename = { 194 - -- ["Foofile"] = "fooscript", 195 - -- }, 196 - -- pattern = { 197 - -- ["~/%.config/foo/.*"] = "fooscript", 198 - -- }, 199 - -- } 189 + vim.filetype.add { 190 + -- extension = { 191 + -- foo = "fooscript", 192 + -- }, 193 + filename = { 194 + ["tiltfile"] = "python", 195 + }, 196 + -- pattern = { 197 + -- ["~/%.config/foo/.*"] = "fooscript", 198 + -- }, 199 + } 200 200 end, 201 201 } 202 202