Files
neovim-config/lua/config/options.lua
2026-02-23 20:49:51 +01:00

19 lines
393 B
Lua

-- 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"