This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.config/nvim/after/ftplugin/javascript.lua

15 lines
401 B
Lua

-- Author : swytch
-- Created : Saturday Feb. 18, 2023 20:41:05 CET
-- License : GPLv3
-- Description : javascript settings file
local format_sync_grp = vim.api.nvim_create_augroup("Format", {})
vim.api.nvim_create_autocmd("BufWritePre", {
pattern = "*.js",
callback = function()
vim.lsp.buf.format({ timeout_ms = 200 })
end,
group = format_sync_grp,
})