feat: add options file

This commit is contained in:
Job 2024-12-13 19:34:16 +01:00
parent 393e49c781
commit a0b65c856d
Signed by: Job79
SSH Key Fingerprint: SHA256:BezbKv3jZaqu7SdNrZM0e42b8nlNwh63zaVj/pUxc7U

View File

@ -0,0 +1,12 @@
-- Set some custom options.
local opt = vim.opt
local global = vim.g
-- Set target text width for gww to 60.
opt.tw = 60
-- Use original gruvbox theme.
global.gruvbox_material_foreground = "original"
-- Disable snack animations.
global.snacks_animate = false