Neovim: Add templ formatting and LSP

This commit is contained in:
Tony Grosinger 2024-06-02 17:40:51 -07:00
parent bf7c4fcea5
commit d790b0eba3

View File

@ -522,6 +522,10 @@ require('lazy').setup({
gofumpt = true,
},
html = {},
templ = {},
-- Some languages (like typescript) have entire language plugins that can be useful:
-- https://github.com/pmizio/typescript-tools.nvim
--
@ -608,6 +612,7 @@ require('lazy').setup({
formatters_by_ft = {
go = { 'goimports', 'gofumpt' },
lua = { 'stylua' },
templ = { 'templ' },
-- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" },
--
@ -817,7 +822,7 @@ require('lazy').setup({
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
opts = {
ensure_installed = { 'bash', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc', 'sql', 'go', 'typescript', 'javascript' },
ensure_installed = { 'bash', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc', 'sql', 'go', 'templ', 'typescript', 'javascript' },
-- Autoinstall languages that are not installed
auto_install = true,
highlight = {