kickstart.nvim/lua/killtheliterate/options.lua

20 lines
364 B
Lua

local set = vim.opt
set.colorcolumn = '80,120'
set.cursorline = true
set.expandtab = true
set.list = true
set.shiftwidth = 2
set.splitbelow = true
set.splitright = true
set.swapfile = false
set.tabstop = 2
set.textwidth = 80
set.wrap = false
set.writebackup = false
vim.o.inccommand = 'nosplit'
vim.o.completeopt = 'menuone,noselect'
-- vim: ts=2 sts=2 sw=2 et