Set `spell`, and `textwidth` when entering a git commit. Also automatically move to position 1:1 and enter insert mode
6 lines
101 B
Lua
6 lines
101 B
Lua
vim.wo.spell = true
|
|
vim.bo.textwidth = 75
|
|
|
|
vim.fn.setpos(".", { 0, 1, 1, 0 })
|
|
vim.cmd("startinsert")
|