feat: add numbers to help windows

This commit is contained in:
2024-10-25 13:31:47 +02:00
parent e73f7ebb8a
commit 13c4c1e77e
+8
View File
@@ -1,3 +1,11 @@
vim.api.nvim_create_autocmd("FileType", {
pattern = "help",
callback = function()
vim.wo.number = true
vim.wo.relativenumber = true
end,
})
vim.api.nvim_create_autocmd("FileType", { vim.api.nvim_create_autocmd("FileType", {
desc = "Use tabs for indents in Go files", desc = "Use tabs for indents in Go files",
pattern = "go", pattern = "go",