A plugin to help give up bad practices in neovim.
Alternatively if you have nvim-notify installed you can get pretty notifications about tapping into bad practices.
Using vim-plug
Plug 'antonk52/bad-practices.nvim'
To enable the plugin you need to call setup
with the options
require('bad_practices.nvim').setup({
most_splits = 3, -- how many splits are considered a good practice(default: 3)
most_tabs = 3, -- how many tabs are considered a good practice(default: 3)
max_hjkl = 10, -- how many times you can spam hjkl keys in a row(default: 10)
})