nvim: add which-key
Even I'm not perfect
This commit is contained in:
parent
6518e6e448
commit
7ad7aeaeaa
1 changed files with 7 additions and 1 deletions
|
@ -175,7 +175,7 @@ return require('packer').startup({function()
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
use { -- refactoring: Refactoring for neovim
|
use { -- refactoring: Refactoring tools for neovim
|
||||||
'ThePrimeagen/refactoring.nvim',
|
'ThePrimeagen/refactoring.nvim',
|
||||||
requires = {
|
requires = {
|
||||||
{"nvim-lua/plenary.nvim"},
|
{"nvim-lua/plenary.nvim"},
|
||||||
|
@ -410,6 +410,12 @@ return require('packer').startup({function()
|
||||||
use { -- splitjoin: switch between single line and multiline versions of code - gJ and gS
|
use { -- splitjoin: switch between single line and multiline versions of code - gJ and gS
|
||||||
'AndrewRadev/splitjoin.vim',
|
'AndrewRadev/splitjoin.vim',
|
||||||
}
|
}
|
||||||
|
use { -- which-key: remind me what that one keybind does again?
|
||||||
|
'folke/which-key.nvim',
|
||||||
|
config = function()
|
||||||
|
require("which-key").setup()
|
||||||
|
end,
|
||||||
|
}
|
||||||
use { -- rhysd: clever-split: split calculation based on pane dimensions - CS or CleverSplit
|
use { -- rhysd: clever-split: split calculation based on pane dimensions - CS or CleverSplit
|
||||||
'rhysd/clever-split.vim',
|
'rhysd/clever-split.vim',
|
||||||
config = function()
|
config = function()
|
||||||
|
|
Loading…
Add table
Reference in a new issue