This commit is contained in:
2023-12-28 17:06:53 +08:00
parent 0f73cb3fed
commit 93e008c735
9 changed files with 230 additions and 160 deletions

View File

@@ -21,7 +21,14 @@ ct.augroup('templates',
--
ct.augroup('filetypeSettings',
{'FileType', 'python', 'setlocal', 'tabstop=4 shiftwidth=4 expandtab'},
{'FileType', 'html', 'setlocal', 'tabstop=2 shiftwidth=2 expandtab'},
{'FileType', 'javascript', 'setlocal', 'tabstop=2 shiftwidth=2 expandtab'},
{'FileType', 'vue', 'setlocal', 'tabstop=2 shiftwidth=2 expandtab'}
{'FileType', 'html', 'setlocal', 'tabstop=2 shiftwidth=2'},
{'FileType', 'javascript', 'setlocal', 'tabstop=2 shiftwidth=2'},
{'FileType', 'typescript', 'setlocal', 'tabstop=2 shiftwidth=2'},
{'FileType', 'typescriptreact','setlocal', 'tabstop=2 shiftwidth=2'},
{'FileType', 'vue', 'setlocal', 'tabstop=2 shiftwidth=2'}
)
--
-- Misc.
--
vim.cmd 'autocmd BufWritePost *.go,*.py,*.js,*.ts,*tsx,*.tex LspFormat' -- run lspformat when saving in go