mbp
This commit is contained in:
parent
ee0ee40cf3
commit
4095694799
7 changed files with 130 additions and 48 deletions
13
lua/custom/plugins/dropbar.lua
Normal file
13
lua/custom/plugins/dropbar.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
'Bekaboo/dropbar.nvim',
|
||||
dependencies = {
|
||||
'nvim-telescope/telescope-fzf-native.nvim',
|
||||
build = 'make',
|
||||
},
|
||||
config = function()
|
||||
local dropbar_api = require 'dropbar.api'
|
||||
vim.keymap.set('n', '<Leader>;', dropbar_api.pick, { desc = 'Pick symbols in winbar' })
|
||||
vim.keymap.set('n', '[;', dropbar_api.goto_context_start, { desc = 'Go to start of current context' })
|
||||
vim.keymap.set('n', '];', dropbar_api.select_next_context, { desc = 'Select next context' })
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue