Newer
Older
nvim-config / lua / vim-options.lua
@Marcus Bengtsson Marcus Bengtsson on 23 Feb 2024 519 bytes Tweaks
-- Tabs --
vim.opt.expandtab = true
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2

-- UI --
vim.opt.scrolloff = 3
vim.opt.number = true
vim.opt.cpoptions = "+$"
vim.opt.ttyfast = true
vim.opt.lazyredraw = true
vim.opt.wrap = false
vim.opt.termguicolors = true

-- Backup/undo--
vim.opt.swapfile = false
vim.opt.backup = false
--vim.opt.undodir = vim.fn.stdpath("data").. "/undodir"
--vim.opt.undofile = true

-- Search --
vim.opt.hlsearch = true
vim.opt.incsearch = true

vim.opt.encoding = "utf8"