summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorVzaa <Vzaa@users.noreply.github.com>2022-08-24 11:48:08 +0300
committerTJ DeVries <devries.timothyj@gmail.com>2022-09-13 15:31:25 -0400
commit5a1a819d34364e9c6458c53191eeb8c3567437b7 (patch)
treedee6bc6002343396eb4d7d39cf7503a7511d6130 /init.lua
parent32f090182a72aa7b6e2009b612f1f2b1aabbd8b5 (diff)
Move Telescope from master to 0.1.x branch
Follow Telescope's README suggestion and use 0.1.x branch instead of master
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua34
1 files changed, 18 insertions, 16 deletions
diff --git a/init.lua b/init.lua
index 47a0abc..2cbb474 100644
--- a/init.lua
+++ b/init.lua
@@ -9,22 +9,24 @@ end
-- stylua: ignore start
require('packer').startup(function(use)
- use 'wbthomason/packer.nvim' -- Package manager
- use 'tpope/vim-fugitive' -- Git commands in nvim
- use 'tpope/vim-rhubarb' -- Fugitive-companion to interact with github
- use { 'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' } } -- Add git related info in the signs columns and popups
- use 'numToStr/Comment.nvim' -- "gc" to comment visual regions/lines
- use 'nvim-treesitter/nvim-treesitter' -- Highlight, edit, and navigate code
- use 'nvim-treesitter/nvim-treesitter-textobjects' -- Additional textobjects for treesitter
- use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client
- use 'williamboman/nvim-lsp-installer' -- Automatically install language servers to stdpath
- use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion
- use { 'L3MON4D3/LuaSnip', requires = { 'saadparwaiz1/cmp_luasnip' } } -- Snippet Engine and Snippet Expansion
- use 'mjlbach/onedark.nvim' -- Theme inspired by Atom
- use 'nvim-lualine/lualine.nvim' -- Fancier statusline
- use 'lukas-reineke/indent-blankline.nvim' -- Add indentation guides even on blank lines
- use 'tpope/vim-sleuth' -- Detect tabstop and shiftwidth automatically
- use { 'nvim-telescope/telescope.nvim', requires = { 'nvim-lua/plenary.nvim' } } -- Fuzzy Finder (files, lsp, etc)
+ use 'wbthomason/packer.nvim' -- Package manager
+ use 'tpope/vim-fugitive' -- Git commands in nvim
+ use 'tpope/vim-rhubarb' -- Fugitive-companion to interact with github
+ use { 'lewis6991/gitsigns.nvim', requires = { 'nvim-lua/plenary.nvim' } } -- Add git related info in the signs columns and popups
+ use 'numToStr/Comment.nvim' -- "gc" to comment visual regions/lines
+ use 'nvim-treesitter/nvim-treesitter' -- Highlight, edit, and navigate code
+ use 'nvim-treesitter/nvim-treesitter-textobjects' -- Additional textobjects for treesitter
+ use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client
+ use 'williamboman/nvim-lsp-installer' -- Automatically install language servers to stdpath
+ use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion
+ use { 'L3MON4D3/LuaSnip', requires = { 'saadparwaiz1/cmp_luasnip' } } -- Snippet Engine and Snippet Expansion
+ use 'mjlbach/onedark.nvim' -- Theme inspired by Atom
+ use 'nvim-lualine/lualine.nvim' -- Fancier statusline
+ use 'lukas-reineke/indent-blankline.nvim' -- Add indentation guides even on blank lines
+ use 'tpope/vim-sleuth' -- Detect tabstop and shiftwidth automatically
+
+ -- Fuzzy Finder (files, lsp, etc)
+ use { 'nvim-telescope/telescope.nvim', branch = '0.1.x', requires = { 'nvim-lua/plenary.nvim' } }
-- Fuzzy Finder Algorithm which requires local dependencies to be built. Only load if `make` is available
use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable "make" == 1 }