Merge branch 'dev' into thesis

nvim: add rust config file
This commit is contained in:
David JULIEN 2022-12-02 16:56:08 +01:00
commit 4bffd0150a
No known key found for this signature in database
GPG Key ID: 1DD6B2BA6DD78810
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
-- Author : swytch
-- Created : Thursday Dec. 01, 2022 11:41:26 CET
-- License : GPLv3
-- Description : rust settings file
local format_sync_grp = vim.api.nvim_create_augroup("Format", {})
vim.api.nvim_create_autocmd("BufWritePre", {
pattern = "*.rs",
callback = function()
vim.lsp.buf.format({ timeout_ms = 200 })
end,
group = format_sync_grp,
})