diff options
author | Yigit Sever | 2022-12-14 17:02:00 +0300 |
---|---|---|
committer | Yigit Sever | 2022-12-14 17:04:11 +0300 |
commit | 820b522113c8ad02198e00eb4e4f71611545d15b (patch) | |
tree | ff38fb41f0b557174982033956272505ea4749cc /.config/nvim/lua/plugins.lua | |
parent | 083b7bcdc568f3db5bde5adb60f2c8a3d038751a (diff) | |
download | dotfiles-820b522113c8ad02198e00eb4e4f71611545d15b.tar.gz dotfiles-820b522113c8ad02198e00eb4e4f71611545d15b.tar.bz2 dotfiles-820b522113c8ad02198e00eb4e4f71611545d15b.zip |
feat(nvim): use abbreviation reminder plugin & abbreviations
https://github.com/0styx0/abbreinder.nvim
reminds you when you don't use your abbreviations
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 14 |
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 '.' |