|
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/mason.nvim' -- Manage external editor tooling i.e LSP servers |
21 | | - use 'williamboman/mason-lspconfig.nvim' -- Automatically install language servers to stdpath |
22 | | - use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion |
23 | | - use { 'L3MON4D3/LuaSnip', requires = { 'saadparwaiz1/cmp_luasnip' } } -- Snippet Engine and Snippet Expansion |
24 | | - use 'mjlbach/onedark.nvim' -- Theme inspired by Atom |
25 | | - use 'nvim-lualine/lualine.nvim' -- Fancier statusline |
26 | | - use 'lukas-reineke/indent-blankline.nvim' -- Add indentation guides even on blank lines |
27 | | - use 'tpope/vim-sleuth' -- Detect tabstop and shiftwidth automatically |
| 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', after = { 'nvim-treesitter' } } -- Additional textobjects for treesitter |
| 19 | + use 'neovim/nvim-lspconfig' -- Collection of configurations for built-in LSP client |
| 20 | + use 'williamboman/mason.nvim' -- Manage external editor tooling i.e LSP servers |
| 21 | + use 'williamboman/mason-lspconfig.nvim' -- Automatically install language servers to stdpath |
| 22 | + use { 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp' } } -- Autocompletion |
| 23 | + use { 'L3MON4D3/LuaSnip', requires = { 'saadparwaiz1/cmp_luasnip' } } -- Snippet Engine and Snippet Expansion |
| 24 | + use 'mjlbach/onedark.nvim' -- Theme inspired by Atom |
| 25 | + use 'nvim-lualine/lualine.nvim' -- Fancier statusline |
| 26 | + use 'lukas-reineke/indent-blankline.nvim' -- Add indentation guides even on blank lines |
| 27 | + use 'tpope/vim-sleuth' -- Detect tabstop and shiftwidth automatically |
28 | 28 |
|
29 | 29 | -- Fuzzy Finder (files, lsp, etc) |
30 | 30 | use { 'nvim-telescope/telescope.nvim', branch = '0.1.x', requires = { 'nvim-lua/plenary.nvim' } } |
@@ -188,7 +188,7 @@ vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { de |
188 | 188 | -- See `:help nvim-treesitter` |
189 | 189 | require('nvim-treesitter.configs').setup { |
190 | 190 | -- Add languages to be installed here that you want installed for treesitter |
191 | | - ensure_installed = {'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript'}, |
| 191 | + ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'typescript' }, |
192 | 192 |
|
193 | 193 | highlight = { enable = true }, |
194 | 194 | indent = { enable = true }, |
@@ -345,7 +345,7 @@ require('lspconfig').sumneko_lua.setup { |
345 | 345 | }, |
346 | 346 | workspace = { library = vim.api.nvim_get_runtime_file('', true) }, |
347 | 347 | -- Do not send telemetry data containing a randomized but unique identifier |
348 | | - telemetry = { enable = false, }, |
| 348 | + telemetry = { enable = false }, |
349 | 349 | }, |
350 | 350 | }, |
351 | 351 | } |
|
0 commit comments