neovim-config/lua/config/options.lua
2023-09-02 18:48:46 +02:00

32 lines
670 B
Lua

-- Set highlight on search
vim.opt.hlsearch = false
-- Enable relative and regular line numbers
vim.opt.relativenumber = true
vim.opt.nu = true
vim.opt.smartindent = true
vim.opt.swapfile = false
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.updatetime = 50
-- vim.opt.colorcolumn = "80"
vim.opt.signcolumn = 'no'
vim.opt.ignorecase = true
vim.opt.smartcase = true
-- Set completeopt to have a better completion experience
vim.o.completeopt = 'menuone,noselect'
vim.o.termguicolors = true