10 lines
231 B
Lua
10 lines
231 B
Lua
|
vim.api.nvim_create_autocmd({ 'BufEnter' }, {
|
||
|
pattern = "github.com_*.txt",
|
||
|
command = "set filetype=markdown"
|
||
|
})
|
||
|
|
||
|
vim.api.nvim_create_autocmd({ 'BufEnter' }, {
|
||
|
pattern = "*lab-tree*.txt",
|
||
|
command = "set filetype=python"
|
||
|
})
|