summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r--.config/nvim/lua/plugins.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index 0c00437..38c1acc 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -149,6 +149,20 @@ return require('packer').startup(function(use)
149 -- colour theme of the $CURRENT_YEAR 149 -- colour theme of the $CURRENT_YEAR
150 use 'rose-pine/neovim' 150 use 'rose-pine/neovim'
151 151
152 -- abbreviation reminder
153 use {
154 '0styx0/abbreinder.nvim',
155 requires = {
156 {
157 '0styx0/abbremand.nvim',
158 module = 'abbremand' -- if want to lazy load
159 }
160 },
161 config = function()
162 require'abbreinder'.setup()
163 end,
164 event = 'BufRead', -- if want lazy load
165 }
152 -- search for, substitute, and abbreviate multiple variants of a word 166 -- search for, substitute, and abbreviate multiple variants of a word
153 use 'tpope/vim-abolish' 167 use 'tpope/vim-abolish'
154 -- enable repeating supported plugin maps with '.' 168 -- enable repeating supported plugin maps with '.'