mirror of
https://github.com/Ascyii/telekasten.nvim.git
synced 2026-01-01 06:14:23 -05:00
Hide numbers on calendar display.
Without hiding numbers and relative numbers, the week number indicator is cut off.
This commit is contained in:
@@ -2626,7 +2626,11 @@ local function ShowCalendar(opts)
|
|||||||
if opts.vertical_resize then
|
if opts.vertical_resize then
|
||||||
vim.cmd("vertical resize +" .. opts.vertical_resize)
|
vim.cmd("vertical resize +" .. opts.vertical_resize)
|
||||||
end
|
end
|
||||||
vim.cmd("set signcolumn=no")
|
vim.cmd([[
|
||||||
|
set signcolumn=no
|
||||||
|
set nonumber
|
||||||
|
set norelativenumber
|
||||||
|
]])
|
||||||
end
|
end
|
||||||
|
|
||||||
-- set up calendar integration: forward to our lua functions
|
-- set up calendar integration: forward to our lua functions
|
||||||
|
|||||||
Reference in New Issue
Block a user