devcontainer/config/nvim/config/options.lua
Job79 09af0db185
Some checks failed
Container build / container-build (push) Failing after 1m21s
feat: update nvim config
2024-12-19 19:22:24 +01:00

16 lines
313 B
Lua

-- Set some custom options.
local opt = vim.opt
local global = vim.g
-- Set target text width for gww to 60.
opt.tw = 60
-- Use the internal clipboard.
opt.clipboard = ""
-- Use original gruvbox theme.
global.gruvbox_material_foreground = "original"
-- Disable snack animations.
global.snacks_animate = false