Files
vim/after/plugin/defaults.lua
Thomas Ruoff dc4a103f55 format all
2023-03-07 22:51:43 +01:00

27 lines
598 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
vim.opt.backup = false
vim.opt.swapfile = false
vim.opt.writebackup = false
vim.opt.colorcolumn = { 80, 120 }
vim.opt.shiftwidth = 2
vim.opt.tabstop = 2
vim.opt.showmode = false
vim.opt.relativenumber = true
vim.opt.listchars = 'tab:» ,extends:,precedes:,nbsp:·,trail:·,eol:↵'
-- global status line ftw
vim.opt.laststatus = 3
-- sometimes handy, sometimes not, still evaluating
vim.opt.winbar = '%=%m %f'
vim.opt.splitbelow = true
vim.opt.splitright = true
vim.opt.scrolloff = 4
vim.opt.sidescrolloff = 4
vim.opt.spelllang = { 'en_us', 'en_gb', 'de' }
vim.opt.foldlevelstart = 99