Browse Source

plugins: stop using a specific commit for lspconfig and nvim-tree

my-config
NTBBloodbath 4 years ago
parent
commit
42eba9f5ee
No known key found for this signature in database GPG Key ID: 18D6730BC846AAC5
  1. 3
      lua/plugins.lua

3
lua/plugins.lua

@ -77,7 +77,6 @@ return packer.startup(function()
'ajmwagar/vim-deus' 'ajmwagar/vim-deus'
} }
-- File tree -- File tree
-- do not use the latest commit because it is broken, at least for me
local disabled_tree = has_value(g.doom_disabled_plugins, 'tree') local disabled_tree = has_value(g.doom_disabled_plugins, 'tree')
if disabled_tree then if disabled_tree then
table.insert(disabled_plugins, 'tree') table.insert(disabled_plugins, 'tree')
@ -86,7 +85,6 @@ return packer.startup(function()
use { use {
'kyazdani42/nvim-tree.lua', 'kyazdani42/nvim-tree.lua',
requires = { 'kyazdani42/nvim-web-devicons' }, requires = { 'kyazdani42/nvim-web-devicons' },
commit = '491fd68d62cebd4a07642cc052028d9d3b55f62e',
disabled = disabled_tree disabled = disabled_tree
} }
-- Statusline -- Statusline
@ -227,7 +225,6 @@ return packer.startup(function()
end end
use { use {
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
commit = '11a581d1860a7ad2b6c1ee1e0ebbb000e81b9950',
disable = (disabled_completion and true or disabled_lspconfig) disable = (disabled_completion and true or disabled_lspconfig)
} }
-- Completion plugin -- Completion plugin

Loading…
Cancel
Save