18 lines
391 B
Lua
18 lines
391 B
Lua
-- sets fileypes for those that are not auto recognized
|
|
|
|
-- sway config
|
|
vim.filetype.add({
|
|
pattern = {
|
|
['~/.config/sway/*'] = 'swayconfig',
|
|
['~/.dotfiles/gui/sway/*'] = 'swayconfig',
|
|
},
|
|
})
|
|
|
|
-- calcurse notes as markdown
|
|
vim.filetype.add({
|
|
pattern = {
|
|
['/tmp/calcurse*'] = 'markdown',
|
|
['~/.local/share/calcursen/notes/*'] = 'markdown',
|
|
},
|
|
})
|