mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-28 09:33:30 +00:00
18 lines
404 B
Lua
18 lines
404 B
Lua
vim.opt.background = 'dark'
|
|
vim.opt.clipboard = 'unnamedplus'
|
|
vim.opt.colorcolumn = '85'
|
|
vim.opt.mouse = 'a'
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.textwidth = 0
|
|
vim.opt.wrapmargin = 0
|
|
|
|
vim.opt.cursorline = true
|
|
vim.opt.expandtab = true
|
|
vim.opt.ignorecase = true
|
|
vim.opt.linebreak = true
|
|
vim.opt.number = true
|
|
vim.opt.smartcase = true
|
|
vim.opt.smartindent = true
|
|
vim.opt.termguicolors = true
|
|
vim.opt.wrap = false
|