mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 16:52:12 +02:00
44 lines
918 B
Lua
44 lines
918 B
Lua
local opt = vim.opt
|
|
|
|
opt.autoindent = true
|
|
opt.autoread = true
|
|
opt.backspace = "indent,eol,start"
|
|
opt.bufhidden = "hide"
|
|
opt.clipboard:append("unnamedplus")
|
|
opt.confirm = true
|
|
opt.copyindent = true
|
|
opt.emoji = true
|
|
opt.encoding = "UTF-8"
|
|
opt.expandtab = true
|
|
opt.fileignorecase = true
|
|
opt.hlsearch = true
|
|
opt.ignorecase = true
|
|
opt.incsearch = true
|
|
opt.infercase = true
|
|
opt.joinspaces = true
|
|
opt.laststatus = 2
|
|
opt.lazyredraw = false
|
|
opt.backup = false
|
|
opt.breakindent = false
|
|
opt.compatible = false
|
|
opt.errorbells = false
|
|
opt.linebreak = false
|
|
opt.swapfile = false
|
|
opt.number = true
|
|
opt.relativenumber = true
|
|
opt.shiftround = true
|
|
opt.shiftwidth = 2
|
|
opt.shiftwidth = 2
|
|
opt.smartcase = true
|
|
opt.smartindent = true
|
|
opt.smarttab = true
|
|
opt.softtabstop = 2
|
|
opt.tabstop = 2
|
|
vim.syntax = "on"
|
|
opt.wrap = false
|
|
opt.cursorline = true
|
|
opt.termguicolors = true
|
|
opt.signcolumn = "yes"
|
|
opt.splitright = true
|
|
opt.splitbelow = true
|