|
9 | 9 |
|
10 | 10 | -- stylua: ignore start
|
11 | 11 | 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' } } |
28 | 30 |
|
29 | 31 | -- Fuzzy Finder Algorithm which requires local dependencies to be built. Only load if `make` is available
|
30 | 32 | use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable "make" == 1 }
|
|
0 commit comments