Fix failing fugitive_extensions tests
parent
c131fe0391
commit
bb7c1311c9
|
@ -11,6 +11,7 @@ local function get_pr_url(...)
|
|||
origin_url = string.gsub(origin_url, ".git$", "")
|
||||
origin_url = string.gsub(origin_url, ":", "/")
|
||||
origin_url = string.gsub(origin_url, "git@", "https://")
|
||||
origin_url = string.gsub(origin_url, "https///", "https://")
|
||||
|
||||
-- Remove prefix if it is available, for some of common git services
|
||||
local common_services = { "github.com", "bitbucket.org", "gitlab.com" }
|
||||
|
|
|
@ -68,14 +68,7 @@ return require("packer").startup({
|
|||
use("cdelledonne/vim-cmake") -- CMake integration
|
||||
|
||||
-- Treesitter
|
||||
use({
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
run = function()
|
||||
if not os.getenv("DOTFILES_CI") then
|
||||
vim.cmd("TSUpdate")
|
||||
end
|
||||
end,
|
||||
}) -- Treesitter integration
|
||||
use({ "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" }) -- Treesitter integration
|
||||
use("nvim-treesitter/playground") -- TSPlaygroundToggle - access treesitter data
|
||||
|
||||
-- LSP
|
||||
|
|
Loading…
Reference in New Issue