feat: add nvim config

This commit is contained in:
Job
2025-01-02 15:14:07 +01:00
commit 725137fca2
9 changed files with 176 additions and 0 deletions

15
lua/config/options.lua Normal file
View File

@@ -0,0 +1,15 @@
-- Set some custom options.
local opt = vim.o
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