summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/config/plugins.lua10
1 files changed, 10 insertions, 0 deletions
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 = {},
+ },
}