updating telescope so the problem goes away
parent
2f4688afcb
commit
11e85cb7be
@ -1,51 +1,51 @@
|
||||
vim.cmd [[packadd packer.nvim]]
|
||||
|
||||
return require('packer').startup(function(use)
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Navigation
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { { 'nvim-lua/plenary.nvim' } }
|
||||
}
|
||||
|
||||
-- Colours
|
||||
use('ellisonleao/gruvbox.nvim')
|
||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||
use({ 'bluz71/vim-moonfly-colors', as = 'moonfly' })
|
||||
|
||||
-- Treesitter
|
||||
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })
|
||||
use('nvim-treesitter/playground')
|
||||
|
||||
-- Editing
|
||||
use('mbbill/undotree')
|
||||
use('tpope/vim-surround')
|
||||
use('tpope/vim-commentary')
|
||||
|
||||
-- LSP
|
||||
use {
|
||||
'VonHeikemen/lsp-zero.nvim',
|
||||
branch = 'v2.x',
|
||||
requires = {
|
||||
-- LSP Support
|
||||
{ 'neovim/nvim-lspconfig' }, -- Required
|
||||
{
|
||||
-- Optional
|
||||
'williamboman/mason.nvim',
|
||||
run = function()
|
||||
vim.cmd [[MasonUpdate]]
|
||||
end,
|
||||
},
|
||||
{ 'williamboman/mason-lspconfig.nvim' }, -- Optional
|
||||
|
||||
-- Autocompletion
|
||||
{ 'hrsh7th/nvim-cmp' }, -- Required
|
||||
{ 'hrsh7th/cmp-nvim-lsp' }, -- Required
|
||||
{ 'L3MON4D3/LuaSnip' }, -- Required
|
||||
},
|
||||
|
||||
use('editorconfig/editorconfig-vim'),
|
||||
}
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Navigation
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { { 'nvim-lua/plenary.nvim' } }
|
||||
}
|
||||
|
||||
-- Colours
|
||||
use('ellisonleao/gruvbox.nvim')
|
||||
use({ 'rose-pine/neovim', as = 'rose-pine' })
|
||||
use({ 'bluz71/vim-moonfly-colors', as = 'moonfly' })
|
||||
|
||||
-- Treesitter
|
||||
use('nvim-treesitter/nvim-treesitter', { run = ':TSUpdate' })
|
||||
use('nvim-treesitter/playground')
|
||||
|
||||
-- Editing
|
||||
use('mbbill/undotree')
|
||||
use('tpope/vim-surround')
|
||||
use('tpope/vim-commentary')
|
||||
|
||||
-- LSP
|
||||
use {
|
||||
'VonHeikemen/lsp-zero.nvim',
|
||||
branch = 'v2.x',
|
||||
requires = {
|
||||
-- LSP Support
|
||||
{ 'neovim/nvim-lspconfig' }, -- Required
|
||||
{
|
||||
-- Optional
|
||||
'williamboman/mason.nvim',
|
||||
run = function()
|
||||
vim.cmd [[MasonUpdate]]
|
||||
end,
|
||||
},
|
||||
{ 'williamboman/mason-lspconfig.nvim' }, -- Optional
|
||||
|
||||
-- Autocompletion
|
||||
{ 'hrsh7th/nvim-cmp' }, -- Required
|
||||
{ 'hrsh7th/cmp-nvim-lsp' }, -- Required
|
||||
{ 'L3MON4D3/LuaSnip' }, -- Required
|
||||
},
|
||||
|
||||
use('editorconfig/editorconfig-vim'),
|
||||
}
|
||||
end)
|
||||
|
Loading…
Reference in New Issue