diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-01-11 12:20:00 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2023-01-11 12:20:00 +0100 |
commit | 763df8e9d428422d7db6fe157dd8f14656aba6e2 (patch) | |
tree | 987e8f41252a4caf67802598d172ebfcc8de0a4c /Common/nvim/lua/plugins.lua | |
parent | 2c9ca86b6a834e1be66678eee78246f8339b3e73 (diff) | |
download | dotfiles-763df8e9d428422d7db6fe157dd8f14656aba6e2.tar.gz dotfiles-763df8e9d428422d7db6fe157dd8f14656aba6e2.zip |
Add some convenience functions
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 |