Learned how to append to a vim.opt

This commit is contained in:
Kenneth Benzie 2024-03-05 00:07:58 +00:00
parent ae46059400
commit b84b028a7e

View File

@ -78,7 +78,7 @@ vim.opt.mouse = 'a'
vim.opt.signcolumn = 'yes'
-- When in diff mode, use the patience algorithm for more readable diffs
-- FIXME: vim.opt.diffopt = vim.opt.diffopt .. ',algorithm:patience'
vim.opt.diffopt:append('algorithm:patience')
-- Insert spaces when <Tab> is pressed in insert mode
vim.opt.expandtab = true