This commit is contained in:
Jacob Bohanon
2024-09-23 10:04:26 -04:00
parent 8ffa24ce52
commit eb4ded42d7
3 changed files with 9 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ vim.api.nvim_create_augroup('jbohanon', {clear=true})
-- command = '%s/\\s\\+$//e',
-- })
vim.api.nvim_create_autocmd('FileType', {
pattern = {'yaml','cpp'},
pattern = {'yaml','cpp', 'tsx'},
group = 'jbohanon',
command = 'setlocal tabstop=2 softtabstop=2 sw=2 expandtab indentkeys-=0# indentkeys-=<:>',
})