Bruno BELANYI
527a85bf11
It looks like `vim.filetype.add` is smarter about "local.am". For some reason opening an *empty* Tiger file results in a backtrace...
7 lines
115 B
Lua
7 lines
115 B
Lua
-- Use bash filetype for `.envrc` files
|
|
vim.filetype.add({
|
|
filename = {
|
|
[".envrc"] = "bash",
|
|
},
|
|
})
|