Skip to content

Commit 5a1a819

Browse files
Vzaatjdevries
authored andcommitted
Move Telescope from master to 0.1.x branch
Follow Telescope's README suggestion and use 0.1.x branch instead of master
1 parent 32f0901 commit 5a1a819

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

init.lua

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,24 @@ end
99

1010
-- stylua: ignore start
1111
require('packer').startup(function(use)
12-
use 'wbthomason/packer.nvim' -- Package manager
13-
use 'tpope/vim-fugitive' -- Git commands in nvim
14-
use 'tpope/vim-rhubarb' -- Fugitive-companion to interact with github
15-
use { 'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' } } -- Add git related info in the signs columns and popups
16-
use 'numToStr/Comment.nvim' -- "gc" to comment visual regions/lines
17-
use 'nvim-treesitter/nvim-treesitter' -- Highlight, edit, and navigate code
18-
use 'nvim-treesitter/nvim-treesitter-textobjects' -- Additional textobjects for treesitter
19-
use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client
20-
use 'williamboman/nvim-lsp-installer' -- Automatically install language servers to stdpath
21-
use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion
22-
use { 'L3MON4D3/LuaSnip', requires = { 'saadparwaiz1/cmp_luasnip' } } -- Snippet Engine and Snippet Expansion
23-
use 'mjlbach/onedark.nvim' -- Theme inspired by Atom
24-
use 'nvim-lualine/lualine.nvim' -- Fancier statusline
25-
use 'lukas-reineke/indent-blankline.nvim' -- Add indentation guides even on blank lines
26-
use 'tpope/vim-sleuth' -- Detect tabstop and shiftwidth automatically
27-
use { 'nvim-telescope/telescope.nvim', requires = { 'nvim-lua/plenary.nvim' } } -- Fuzzy Finder (files, lsp, etc)
12+
use 'wbthomason/packer.nvim' -- Package manager
13+
use 'tpope/vim-fugitive' -- Git commands in nvim
14+
use 'tpope/vim-rhubarb' -- Fugitive-companion to interact with github
15+
use { 'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' } } -- Add git related info in the signs columns and popups
16+
use 'numToStr/Comment.nvim' -- "gc" to comment visual regions/lines
17+
use 'nvim-treesitter/nvim-treesitter' -- Highlight, edit, and navigate code
18+
use 'nvim-treesitter/nvim-treesitter-textobjects' -- Additional textobjects for treesitter
19+
use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client
20+
use 'williamboman/nvim-lsp-installer' -- Automatically install language servers to stdpath
21+
use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion
22+
use { 'L3MON4D3/LuaSnip', requires = { 'saadparwaiz1/cmp_luasnip' } } -- Snippet Engine and Snippet Expansion
23+
use 'mjlbach/onedark.nvim' -- Theme inspired by Atom
24+
use 'nvim-lualine/lualine.nvim' -- Fancier statusline
25+
use 'lukas-reineke/indent-blankline.nvim' -- Add indentation guides even on blank lines
26+
use 'tpope/vim-sleuth' -- Detect tabstop and shiftwidth automatically
27+
28+
-- Fuzzy Finder (files, lsp, etc)
29+
use { 'nvim-telescope/telescope.nvim', branch = '0.1.x', requires = { 'nvim-lua/plenary.nvim' } }
2830

2931
-- Fuzzy Finder Algorithm which requires local dependencies to be built. Only load if `make` is available
3032
use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable "make" == 1 }

0 commit comments

Comments
 (0)