123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- vim.g.encoding = "UTF-8"
- vim.o.fileencoding = "UTF-8"
- vim.o.scrolloff = 8
- vim.o.sidescrolloff = 8
- vim.wo.number = true
- vim.wo.relativenumber = true
- vim.wo.cursorline = true
- vim.wo.signcolumn = "yes"
- vim.o.tabstop = 4
- vim.bo.tabstop = 4
- vim.o.softtabstop = 4
- vim.o.shiftround = 4
- vim.o.shiftwidth = 2
- vim.bo.shiftwidth = 2
- vim.o.expandtab = true
- vim.bo.expandtab = true
- vim.o.autoindent = true
- vim.bo.autoindent = true
- vim.o.smartindent = true
- vim.o.ingorecash = true
- vim.o.smartcase = true
- vim.o.hlsearch = true
- vim.o.insearch = true
- vim.o.cmdheight = 1
- vim.o.autoread = true
- vim.bo.autoread = true
- vim.wo.wrap = false
- vim.o.whichwrap = '<,>,[,]'
- vim.o.hidden = true
- vim.o.mouse = 'a'
- vim.o.backup = false
- vim.o.writebackup = false
- vim.o.swapfile = false
- vim.o.updatetime = 300
- vim.o.timeoutlen = 500
- vim.o.splitbelow = true
- vim.o.splitright = true
- vim.g.completeopt = "menu,menuone,noselect,noinsert"
- vim.o.background = "dark"
- vim.o.termguicolors = true
- vim.opt.termguicolors = true
- vim.o.list = true
- vim.o.listcharts = "space:·"
- vim.o.wildmenu = true
- vim.o.shortmess = vim.o.shortmess .. 'c'
- vim.o.pumheight = 10
- vim.o.showtabline = 2
- vim.o.showmode = true
- vim.opt.clipboard:append("unnamedplus")
|