diff --git a/README.md b/README.md index 0666378..c1b0cd5 100644 --- a/README.md +++ b/README.md @@ -756,8 +756,9 @@ extensions = {'quickfix'} - fugitive - fzf - man -- nerdtree - neo-tree +- nerdtree +- nvim-dap-ui - nvim-tree - quickfix - symbols-outline diff --git a/lua/lualine/extensions/nvim-dap-ui.lua b/lua/lualine/extensions/nvim-dap-ui.lua new file mode 100644 index 0000000..d129d14 --- /dev/null +++ b/lua/lualine/extensions/nvim-dap-ui.lua @@ -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