Migrate to lazy.nvim with more lua config

This commit is contained in:
Alexander Gehrke 2023-06-19 11:54:39 +02:00
parent d7aa29354c
commit be6559c1b6
28 changed files with 823 additions and 445 deletions

18
ftdetect/extensions.lua Normal file
View file

@ -0,0 +1,18 @@
vim.filetype.add({
extension = {
},
filename = {
['.scalafmt.conf'] = 'hocon',
['kitty.conf'] = 'kitty',
['neomuttrc'] = 'neomutt',
['template'] = 'sh',
},
pattern = {
['${XDG_CONFIG_HOME}/kitty/*.conf'] = 'kitty',
['${XDG_CONFIG_HOME}/kitty/*.session'] = 'kitty-session',
},
})
-- au BufRead,BufNewFile *.ttl set filetype=rdf-turtle
-- au! BufNewFile,BufRead *.xwiki set ft=xwiki syntax=xwiki
--