A starter template for LazyVim. Refer to the documentation to get started.
I've changed the lua/config/options.lua
file adding these lines:
vim.opt.expandtab = false
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
Then I've installed with Mason:
- clangd
- clang-formatter
When you open a python file if you get Indentation contains tabs
, make a file in the root directory called .flake8
and insert this:
[flake8]
max-line-length = 99
ignore = W191
And that's all!