Added new package taplo

This commit is contained in:
Marcin Woźniak 2024-12-28 23:01:04 +01:00
parent 6e2364fa89
commit d32b241062
Signed by: y0rune
GPG Key ID: F204C385F57EB348
2 changed files with 9 additions and 0 deletions

View File

@ -654,6 +654,9 @@ au BufNewFile,BufRead *.mikrotik setfiletype routeros
" Ebuild
au BufNewFile,BufRead,BufWritePre *.ebuild let g:shfmt_extra_args = '-ci -sr -s'
" TOML
autocmd BufWritePre *.toml silent! undojoin | Neoformat taplo
" Terrafrom
autocmd BufWritePre *.tf lua vim.lsp.buf.format()
autocmd BufWritePre *.tfvars lua vim.lsp.buf.format()

View File

@ -426,6 +426,11 @@ function install_tss_client() {
}
function install_taplo() {
# Install taplo
$install taplo
}
function main() {
command_start update_pip
command_start install_neovim_module_for_python
@ -459,6 +464,7 @@ function main() {
command_start install_kubernetes
command_start install_rust
command_start install_tss_client
command_start install_taplo
command_start update
}