neoconfig/lua/config/options.lua
2025-03-27 18:24:23 +01:00

15 lines
430 B
Lua

vim.opt.termguicolors = true -- True color support
vim.opt.hlsearch = false -- Disable highlighting search matches
vim.opt.hidden = true -- Allow background buffers
vim.opt.cindent = true
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.hidden = true
vim.opt.mouse="a"
vim.opt.clipboard="unnamedplus"
vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- vim.opt.spell = true
vim.opt.ignorecase = true