nix-config/home/vim/plugin/settings/null-ls.vim

17 lines
426 B
VimL
Raw Normal View History

2022-02-25 11:48:26 +01:00
lua << EOF
local null_ls = require("null-ls")
null_ls.setup({
on_attach = function(client)
-- Format on save
if client.resolved_capabilities.document_formatting then
vim.cmd([[
augroup LspFormatting
autocmd! * <buffer>
autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync()
augroup END
]])
end
end,
})
2022-02-25 11:48:26 +01:00
EOF