2024-02-10 22:51:14 +05:30
|
|
|
vim.opt.autowrite = true
|
|
|
|
vim.opt.background = "dark"
|
2024-03-01 22:18:05 +05:30
|
|
|
vim.opt.clipboard = "unnamedplus"
|
2024-02-10 22:51:14 +05:30
|
|
|
vim.opt.expandtab = true
|
|
|
|
vim.opt.laststatus = 2
|
|
|
|
vim.opt.list = true
|
|
|
|
vim.opt.number = true
|
|
|
|
vim.opt.relativenumber = true
|
|
|
|
vim.opt.scrolloff = 10
|
|
|
|
vim.opt.shiftwidth = 2
|
|
|
|
vim.opt.showmode = false
|
|
|
|
vim.opt.signcolumn = "yes"
|
|
|
|
vim.opt.smartindent = true
|
|
|
|
vim.opt.softtabstop = 2
|
|
|
|
vim.opt.splitbelow = true
|
|
|
|
vim.opt.splitright = true
|
|
|
|
vim.opt.swapfile = false
|
|
|
|
vim.opt.tabstop = 2
|
|
|
|
vim.opt.termguicolors = true
|
|
|
|
vim.opt.updatetime = 100
|
|
|
|
vim.opt.wrap = false
|