Compare commits
2 commits
9bb5785c8e
...
9a81b3db9b
Author | SHA1 | Date | |
---|---|---|---|
9a81b3db9b | |||
febd994c9f |
2 changed files with 40 additions and 0 deletions
10
.clang-format
Normal file
10
.clang-format
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
BasedOnStyle: LLVM
|
||||||
|
IndentWidth: 4
|
||||||
|
TabWidth: 4
|
||||||
|
UseTab: Always
|
||||||
|
BreakBeforeBraces: Attach
|
||||||
|
ColumnLimit: 100
|
||||||
|
PenaltyReturnTypeOnItsOwnLine: 1000000
|
||||||
|
AlwaysBreakAfterDefinitionReturnType: None
|
||||||
|
AlwaysBreakAfterDefinitionReturnType: None
|
||||||
|
SeparateDefinitionBlocks: Always
|
30
.config/nvim/lua/plugins/none-ls.lua
Normal file
30
.config/nvim/lua/plugins/none-ls.lua
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
local augroup = vim.api.nvim_create_augroup("LspFormatting",{})
|
||||||
|
local null_ls = require("null-ls")
|
||||||
|
|
||||||
|
null_ls.setup({
|
||||||
|
sources = {
|
||||||
|
null_ls.builtins.formatting.rustfmt,
|
||||||
|
null_ls.builtins.formatting.blue,
|
||||||
|
null_ls.builtins.formatting.gofmt,
|
||||||
|
null_ls.builtins.formatting.clang_format,
|
||||||
|
null_ls.builtins.code_actions.shellcheck,
|
||||||
|
null_ls.builtins.formatting.prettierd.with({
|
||||||
|
filetypes = { "html", "json", "css", "js", "yaml", "markdown" },
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
on_attach = function(client,bufnr)
|
||||||
|
if client.supports_method("textDocument/formatting") then
|
||||||
|
vim.api.nvim_clear_autocmds({
|
||||||
|
group = augroup,
|
||||||
|
buffer = bufnr,
|
||||||
|
})
|
||||||
|
vim.api.nvim_create_autocmd("BufWritePre",{
|
||||||
|
group = augroup,
|
||||||
|
buffer = bufnr,
|
||||||
|
callback = function()
|
||||||
|
vim.lsp.buf.format({ bufnr = bufnr })
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue