feat: add nvim-dap-ui extension (#711)

* Extension for nvim-dap-ui

* Add nvim-dap-ui extension to README.md

* sort

* Set file_status option to false
This commit is contained in:
kaiv2 2022-06-21 19:06:07 +08:00 committed by GitHub
parent b656978a6e
commit ddbbdec27a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -756,8 +756,9 @@ extensions = {'quickfix'}
- fugitive - fugitive
- fzf - fzf
- man - man
- nerdtree
- neo-tree - neo-tree
- nerdtree
- nvim-dap-ui
- nvim-tree - nvim-tree
- quickfix - quickfix
- symbols-outline - symbols-outline

View File

@ -0,0 +1,13 @@
-- MIT license, see LICENSE for more details.
-- Extension for nvim-dap-ui
local M = {}
M.sections = {
lualine_a = { { 'filename', file_status = false } }
}
M.filetypes = {
"dap-repl", "dapui_console", "dapui_watches", "dapui_stacks", "dapui_breakpoints", "dapui_scopes"
}
return M