refactor: simplify config

This commit is contained in:
Job
2026-03-06 20:06:22 +01:00
parent cebe4d190c
commit add6e87c26
7 changed files with 29 additions and 69 deletions

View File

@@ -1,18 +1,4 @@
-- 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
-- Use inttelepehnse instead of phpactor
global.lazyvim_php_lsp = "intelephense"
vim.o.tw = 60
vim.o.clipboard = ""
vim.g.snacks_animate = false
vim.g.lazyvim_php_lsp = "intelephense"