1
1
Fork 0

which-key for neovim

This commit is contained in:
Gaiety 2026-05-21 19:17:31 -06:00
parent a770d7e032
commit a2d6242df9
3 changed files with 74 additions and 0 deletions

View file

@ -1,8 +1,15 @@
require('options')
require('keys')
require('keyhelpers')
require('highlighting')
require('theme')
require('statusline')
require('buffers')
require('tree')
require('undo')
require('telescope')
require('linter')
require('lsp')

3
nvim/lua/keyhelpers.lua Normal file
View file

@ -0,0 +1,3 @@
vim.pack.add({
'https://github.com/folke/which-key.nvim'
})

View file

@ -1,16 +1,80 @@
{
"plugins": {
"ale": {
"rev": "ba8b9cbab95131e284c5be926642f803b2be0058",
"src": "https://github.com/dense-analysis/ale"
},
"atone.nvim": {
"rev": "a2bbc8810287032756fb77e383bd3ea610208651",
"src": "https://github.com/XXiaoA/atone.nvim"
},
"barbar.nvim": {
"rev": "539d73def39c9172b4d4d769f14090e08f37b29d",
"src": "https://github.com/romgrk/barbar.nvim"
},
"gitsigns.nvim": {
"rev": "4ed47e8c4c66c921dc1d6643977e0526e1f44396",
"src": "https://github.com/lewis6991/gitsigns.nvim"
},
"mason.nvim": {
"rev": "44d1e90e1f66e077268191e3ee9d2ac97cc18e65",
"src": "https://github.com/mason-org/mason.nvim"
},
"neovim": {
"rev": "cf2a288696b03d0934da713d66c6d71557b5c997",
"src": "https://github.com/rose-pine/neovim"
},
"nvim-lint": {
"rev": "4b03656c09c1561f89b6aa0665c15d292ba9499d",
"src": "https://github.com/mfussenegger/nvim-lint"
},
"nvim-lspconfig": {
"rev": "9ccd58a7949091c0cc2777d4e92a45a209c808c1",
"src": "https://github.com/neovim/nvim-lspconfig"
},
"nvim-tree.lua": {
"rev": "31503ad5d869fca61461d82a9126f62480ecb0ab",
"src": "https://github.com/nvim-tree/nvim-tree.lua"
},
"nvim-web-devicons": {
"rev": "40e9d5a6cc3db11b309e39593fc7ac03bb844e38",
"src": "https://github.com/nvim-tree/nvim-web-devicons"
},
"plenary.nvim": {
"rev": "b9fd5226c2f76c951fc8ed5923d85e4de065e509",
"src": "https://github.com/nvim-lua/plenary.nvim"
},
"roseline": {
"rev": "f8c9088e72a238dc27039472116fc642e7f4dee9",
"src": "https://github.com/maxmx03/roseline"
},
"telescope-fzf-native.nvim": {
"rev": "6fea601bd2b694c6f2ae08a6c6fab14930c60e2c",
"src": "https://github.com/nvim-telescope/telescope-fzf-native.nvim"
},
"telescope-undo.nvim": {
"rev": "928d0c2dc9606e01e2cc547196f48d2eaecf58e5",
"src": "https://github.com/debugloop/telescope-undo.nvim"
},
"telescope.nvim": {
"rev": "cfb85dcf7f822b79224e9e6aef9e8c794211b20b",
"src": "https://github.com/nvim-telescope/telescope.nvim"
},
"tiny-inline-diagnostic.nvim": {
"rev": "57a0eb84b2008c76e77930639890d9874195b1e1",
"src": "https://github.com/rachartier/tiny-inline-diagnostic.nvim"
},
"undotree": {
"rev": "0e6d41d55ad147407e4ba00a292973de8db0b836",
"src": "https://github.com/jiaoshijie/undotree"
},
"vim-mundo": {
"rev": "2ceda8c65f7b3f9066820729fc02003a09df91f9",
"src": "https://github.com/simnalamburt/vim-mundo"
},
"which-key.nvim": {
"rev": "3aab2147e74890957785941f0c1ad87d0a44c15a",
"src": "https://github.com/folke/which-key.nvim"
}
}
}