1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
e4c6d76b72 Replace notification popups 2024-09-30 19:40:26 +02:00
9195a341f5 Open help in a vertical split 2024-09-30 19:19:02 +02:00
2 changed files with 17 additions and 1 deletions

View File

@ -41,3 +41,14 @@ aucmd({ "InsertEnter", "InsertLeave", "BufEnter" }, {
vim.opt.cursorline = not entered_insert_mode
end
})
-- Open help window in a vertical split
aucmd("BufWinEnter", {
group = "valeth",
pattern = "*/doc/*",
callback = function()
if vim.bo.filetype == "help" then
vim.cmd.wincmd("H")
end
end
})

View File

@ -16,6 +16,11 @@ spec.opts = {
command_palette = true,
lsp_doc_border = true,
},
views = {
notify = {
replace = true,
},
},
}
spec.keys = {