This commit is contained in:
Cat /dev/Nulo 2023-01-10 23:28:59 -03:00
parent 491f690db5
commit b4a67c2988
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,7 @@
theme = "rose_pine"
[editor]
auto-format = true
[editor.lsp]
display-messages = true

View File

@ -0,0 +1,22 @@
[[language]]
name = "javascript"
auto-format = true
formatter = { command = 'prettier', args = ["--parser=javascript"] }
[[language]]
name = "typescript"
auto-format = true
formatter = { command = 'prettier', args = ["--parser=typescript"] }
[[language]]
name = "html"
formatter = { command = 'prettier', args = ["--parser=html"] }
[[language]]
name = "css"
formatter = { command = 'prettier', args = ["--parser=css"] }
[[language]]
name = "go"
auto-format = true
formatter = { command = 'goimports' }