feat(lsp): inlay & format
This commit is contained in:
parent
0acea75748
commit
0f7a77ebe3
@ -16,6 +16,20 @@ opt.wrapscan = false
|
|||||||
|
|
||||||
vim.g.deprecation_warnings = true
|
vim.g.deprecation_warnings = true
|
||||||
|
|
||||||
|
-- Auto-format
|
||||||
|
--
|
||||||
|
local set_autoformat = function(pattern, bool_val)
|
||||||
|
vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
|
pattern = pattern,
|
||||||
|
callback = function()
|
||||||
|
vim.b.autoformat = bool_val
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
vim.g.autoformat = false
|
||||||
|
--set_autoformat({ "cpp" }, true)
|
||||||
|
|
||||||
-- filetype
|
-- filetype
|
||||||
--
|
--
|
||||||
vim.g.markdown_folding = 1
|
vim.g.markdown_folding = 1
|
||||||
|
8
lua/plugins/lsp.lua
Normal file
8
lua/plugins/lsp.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
opts = {
|
||||||
|
inlay_hints = { enabled = false },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user