diff options
Diffstat (limited to 'Common/nvim/lua/plugins.lua')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 555dad3..3077560 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -16,6 +16,8 @@ vim.cmd([[ return require('packer').startup(function(use) -- Packer itself :) use 'wbthomason/packer.nvim' + -- targets (extends vim's targets, allowing things like multiline select inside backticks) + use 'wellle/targets.vim'; -- GitSigns use { @@ -160,6 +162,13 @@ return require('packer').startup(function(use) use 'mfussenegger/nvim-jdtls' + -- Goyo :) + use { + 'junegunn/goyo.vim' + } + use { 'smithbm2316/centerpad.nvim' } + + -- packer.nvim -- Automatically set up your configuration after cloning packer.nvim -- Put this at the end after all plugins if packer_bootstrap then |