summaryrefslogtreecommitdiff
path: root/lua/config
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-13 23:24:34 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-13 23:24:34 +0100
commitc54d55bd47db65892c34851d2d3e08630efa00ff (patch)
treea901941e14b14295cd0776a430d47b16050ccce6 /lua/config
parente0417687471c9de0dfb20c50093ad61a040be8e6 (diff)
Add formatting on save
Diffstat (limited to 'lua/config')
-rw-r--r--lua/config/autocommands.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/config/autocommands.lua b/lua/config/autocommands.lua
index 213801a..a6038d2 100644
--- a/lua/config/autocommands.lua
+++ b/lua/config/autocommands.lua
@@ -26,4 +26,9 @@ vim.cmd([[
autocmd!
autocmd User AlphaReady set showtabline=0 | autocmd BufUnload <buffer> set showtabline=2
augroup end
+ Autoformat
+ augroup _lsp
+ autocmd!
+ autocmd BufWritePre * lua vim.lsp.buf.formatting()
+ augroup end
]])