From 10c0f99c99247bad5858febf083308effc3ce5c4 Mon Sep 17 00:00:00 2001 From: jordanyono Date: Tue, 16 Dec 2025 14:37:23 -0500 Subject: [PATCH] moar --- init.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/init.lua b/init.lua index ed7c6a0e..beabe94c 100644 --- a/init.lua +++ b/init.lua @@ -929,6 +929,7 @@ require('lazy').setup({ vim.list_extend(ensure_installed, { 'stylua', -- Used to format Lua code 'sql-formatter', + 'prettier', }) require('mason-tool-installer').setup { ensure_installed = ensure_installed } @@ -977,6 +978,7 @@ require('lazy').setup({ javascript = true, javascriptreact = true, python = true, + sql = true, } if disable_filetypes[vim.bo[bufnr].filetype] then return nil @@ -1193,6 +1195,8 @@ require('lazy').setup({ 'bash', 'yaml', 'sql', + 'hcl', + 'terraform', }, -- Autoinstall languages that are not installed auto_install = true, @@ -1212,6 +1216,14 @@ require('lazy').setup({ -- - Show your current context: https://github.com/nvim-treesitter/nvim-treesitter-context -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects }, + { + 'towolf/vim-helm', + event = 'BufReadPre', + config = function() + -- This plugin automatically detects helm files (including .tpl) + -- and sets the filetype to "helm" instead of "yaml" + end, + }, -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the -- init.lua. If you want these files, they are in the repository, so you can just download them and