mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 18:02:13 +02:00
41 lines
987 B
Lua
41 lines
987 B
Lua
vim.o.autoindent = true
|
|
vim.o.autoread = true
|
|
vim.o.backspace = "indent,eol,start"
|
|
vim.o.bufhidden = "hide"
|
|
vim.o.clipboard = "unnamedplus"
|
|
vim.o.confirm = true
|
|
vim.o.copyindent = true
|
|
vim.o.emoji = true
|
|
vim.o.encoding = "UTF-8"
|
|
vim.o.expandtab = true
|
|
vim.o.fileignorecase = true
|
|
vim.o.hlsearch = true
|
|
vim.o.ignorecase = true
|
|
vim.o.incsearch = true
|
|
vim.o.infercase = true
|
|
vim.o.joinspaces = true
|
|
vim.o.laststatus = 2
|
|
vim.o.lazyredraw = true
|
|
vim.o.nobackup = true
|
|
vim.o.nobreakindent = true
|
|
vim.o.nocompatible = true
|
|
vim.o.noerrorbells = true
|
|
vim.o.nofoldenable = true
|
|
vim.o.nolinebreak = true
|
|
vim.o.noswapfile = true
|
|
vim.o.nowrap = true
|
|
vim.o.number = true
|
|
vim.o.path = vim.o.path .. "**"
|
|
vim.o.relativenumber = true
|
|
vim.o.shiftround = true
|
|
vim.o.shiftwidth = 2
|
|
vim.o.shiftwidth = 2
|
|
vim.o.smartcase = true
|
|
vim.o.smartindent = true
|
|
vim.o.smarttab = true
|
|
vim.o.softtabstop = 2
|
|
vim.o.tabstop = 2
|
|
vim.o.wildignore = "*.o,*.obj,./node_modules/*"
|
|
vim.o.wildignorecase = true
|
|
vim.syntax = "on"
|