feat(nvim): set tabs to 4 spaces for c/cpp
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-06-24 11:33:02 -04:00
parent 4a396a28cc
commit e581ce4582

View file

@ -19,6 +19,11 @@ in
extraLuaConfig =
# lua
''
vim.api.nvim_create_autocmd('FileType', {
pattern = { 'cpp' , 'c'},
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
local lsp = require('lspconfig');
local coq = require('coq');