1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-28 17:42:47 +00:00
dotfiles/nvim/lua/opt.lua

18 lines
404 B
Lua
Raw Normal View History

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