style(nvim): format with stylua

This commit is contained in:
Price Hiller 2023-05-22 17:56:53 -05:00
parent 1553d6f4c4
commit 79f9d95c17
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ local M = {}
M.setup = function()
vim.filetype.add({
filename = {
['.dockerignore'] = "dockerignore"
[".dockerignore"] = "dockerignore",
},
pattern = {
[".*%.dockerfile"] = "dockerfile",

View File

@ -174,8 +174,8 @@ lazy.setup({
config = function()
require("lsp-inlayhints").setup({
inlay_hints = {
highlight = "LspInlayHint"
}
highlight = "LspInlayHint",
},
})
vim.api.nvim_create_augroup("LspAttach_inlayhints", {})
vim.api.nvim_create_autocmd("LspAttach", {