diff options
| author | Peter Piekarczyk <peterpme@users.noreply.github.com> | 2022-07-09 00:13:53 -0500 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2022-07-11 09:08:53 -0400 |
| commit | a9a55c667ad6aa95aa6702dd677399fdb6f18a60 (patch) | |
| tree | de32cf6a29b35ba5cc2ad8b2ef9d06e589a848ac /nvim/init.lua | |
| parent | 794ffeb147d9d74544ee1cb1f7e831c2597d5471 (diff) | |
| download | dots-a9a55c667ad6aa95aa6702dd677399fdb6f18a60.tar.gz | |
Removes extra space between "- Annotation" -> "-Annotation"
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index cc3cd0f..d15e479 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -15,7 +15,7 @@ require('packer').startup(function(use) 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 '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 |