From 24b53f8fd305e5152d3b8ade47eab1e0b9b2edcf Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Mon, 17 Apr 2023 00:56:12 +0200 Subject: [PATCH] Neovim tweaks. --- astronvim/lua/user/options.lua | 1 + astronvim/lua/user/plugins/treesitter.lua | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/astronvim/lua/user/options.lua b/astronvim/lua/user/options.lua index c8f2c5b..f604966 100644 --- a/astronvim/lua/user/options.lua +++ b/astronvim/lua/user/options.lua @@ -15,6 +15,7 @@ return { termguicolors = true, writebackup = false, clipboard = "", + cmdheight = 1, foldcolumn = "0", laststatus = 2, mouse = "", diff --git a/astronvim/lua/user/plugins/treesitter.lua b/astronvim/lua/user/plugins/treesitter.lua index f7ec00a..40691cd 100644 --- a/astronvim/lua/user/plugins/treesitter.lua +++ b/astronvim/lua/user/plugins/treesitter.lua @@ -1,6 +1,11 @@ return { "nvim-treesitter/nvim-treesitter", opts = { - auto_install = true, + ensure_installed = { + "bash", + "python", + "terraform", + "vim", + }, }, }