12 lines
329 B
Lua
12 lines
329 B
Lua
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 = ","
|