From 349040764740cfe226794a147692289efd3de98b Mon Sep 17 00:00:00 2001 From: Barak Michener Date: Tue, 11 Jul 2023 14:34:19 -0700 Subject: [PATCH] add terraform TreeSitter and git LFS --- .gitconfig | 5 +++++ .vim/nvim.lua | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitconfig b/.gitconfig index cf7ec6b..4336734 100644 --- a/.gitconfig +++ b/.gitconfig @@ -52,3 +52,8 @@ ff = only [init] defaultBranch = main +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true diff --git a/.vim/nvim.lua b/.vim/nvim.lua index 2ee4804..91a1ea4 100644 --- a/.vim/nvim.lua +++ b/.vim/nvim.lua @@ -55,7 +55,7 @@ nvim_lsp.gopls.setup({ }) nvim_lsp.pyright.setup({ on_attach = on_attach }) -nvim_lsp.clangd.setup({ on_attach = on_attach }) +--nvim_lsp.clangd.setup({ on_attach = on_attach }) nvim_lsp.tsserver.setup { cmd = { "/home/barak/.yarn/bin/typescript-language-server", "--stdio" } } @@ -416,8 +416,9 @@ require 'nvim-treesitter.configs'.setup { "query", "rust", "svelte", - "typescript", + "terraform", "toml", + "typescript", "vim", "yaml", },