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:
parent
b656978a6e
commit
ddbbdec27a
|
@ -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
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue