diff options
author | Christian Chiarulli <[email protected]> | 2022-10-06 02:49:58 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-06 02:49:58 +0000 |
commit | 1eed9f572f29568a65cf2505e2dd37d1c2e7a309 (patch) | |
tree | 3ed1d7c5b1af887d5fc227beeaa98b3c4b664848 /lua/lvim/core/autocmds.lua | |
parent | c1edf56826f507096e54400f37f2bdd9da369d26 (diff) |
feat(dap): buffernames for elements, icons, hide dap-repl by default (#3156)
Diffstat (limited to 'lua/lvim/core/autocmds.lua')
-rw-r--r-- | lua/lvim/core/autocmds.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lua/lvim/core/autocmds.lua b/lua/lvim/core/autocmds.lua index 99c65c2e..ee5d8f13 100644 --- a/lua/lvim/core/autocmds.lua +++ b/lua/lvim/core/autocmds.lua @@ -29,7 +29,6 @@ function M.load_defaults() ]] end, }) - local definitions = { { "TextYankPost", @@ -56,6 +55,14 @@ function M.load_defaults() { "FileType", { + group = "_hide_dap_repl", + pattern = "dap-repl", + command = "set nobuflisted", + }, + }, + { + "FileType", + { group = "_filetype_settings", pattern = "qf", command = "set nobuflisted", |