1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Add filetypes config

This commit is contained in:
Dan Barber 2024-05-07 16:34:29 -05:00
parent 71b07b7842
commit 8ba515a30f
2 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,6 @@
vim.opt.termguicolors = true
require("config.filetypes")
require("config.keymaps")
require("config.lazy")
require("config.options")

View File

@ -0,0 +1,8 @@
vim.filetype.add({
extension = {
pom = "ruby"
},
filename = {
["Jenkinsfile"] = "groovy"
}
})