From 09859a9a195bac1b02ab39e7dbff8318ccc7a414 Mon Sep 17 00:00:00 2001 From: Skladnayazebra Date: Thu, 3 Sep 2026 15:52:31 +0200 Subject: Add Otter to enable embedded bash LSP; add Bitbucket URL handler --- nvim/lua/config/plugins.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'nvim/lua/config') diff --git a/nvim/lua/config/plugins.lua b/nvim/lua/config/plugins.lua index bbd594d..afb9fe7 100644 --- a/nvim/lua/config/plugins.lua +++ b/nvim/lua/config/plugins.lua @@ -9,6 +9,8 @@ return { -- Git integration -- Tpope did not udpate Fugitive since 2022; this version only adds commit hash to commit view { "wookayin/vim-fugitive", commit = "b3828fd" }, + -- bitbucket provider for :GBrowse command from Fugitive + { "tommcdo/vim-fubitive" }, -- Shows git diff info in the gutter { "lewis6991/gitsigns.nvim" }, -- comment gestures @@ -68,4 +70,12 @@ return { { "LunarVim/bigfile.nvim" }, -- Plugin for formatters. See formatters.lua for configs { "stevearc/conform.nvim" }, + -- allows LSP for embedded languages (e.g. bash inside of yaml) + { + "jmbuhr/otter.nvim", + dependencies = { + "nvim-treesitter/nvim-treesitter", + }, + opts = {}, + }, } -- cgit v1.3.1