mirror of
https://github.com/duma799/hyprduma-config.git
synced 2026-05-14 22:51:00 +00:00
17 lines
392 B
Lua
17 lines
392 B
Lua
|
|
-- Basic vim options
|
||
|
|
vim.opt.relativenumber = false
|
||
|
|
vim.opt.tabstop = 4
|
||
|
|
vim.opt.shiftwidth = 4
|
||
|
|
vim.opt.expandtab = true
|
||
|
|
vim.opt.smartindent = true
|
||
|
|
vim.opt.wrap = false
|
||
|
|
vim.opt.swapfile = false
|
||
|
|
vim.opt.backup = false
|
||
|
|
vim.opt.undofile = true
|
||
|
|
vim.opt.hlsearch = false
|
||
|
|
vim.opt.incsearch = true
|
||
|
|
vim.opt.termguicolors = true
|
||
|
|
vim.opt.scrolloff = 8
|
||
|
|
vim.opt.updatetime = 50
|
||
|
|
vim.opt.colorcolumn = "80"
|